fix manager-api bug (#223)

This commit is contained in:
zhisheng
2025-03-06 23:31:23 +08:00
committed by GitHub
parent 1f722477ce
commit 76c16ad16e
2 changed files with 9 additions and 0 deletions
@@ -35,4 +35,9 @@ public interface ErrorCode {
int REDIS_ERROR = 10027;
int JOB_ERROR = 10028;
int INVALID_SYMBOL = 10029;
int PASSWORD_LENGTH_ERROR = 10030;
int PASSWORD_WEAK_ERROR = 10031;
int DEL_MYSELF_ERROR = 10032;
}
@@ -23,4 +23,8 @@ public interface SysDictTypeService extends BaseService<SysDictTypeEntity> {
void update(SysDictTypeDTO dto);
void delete(Long[] ids);
List<DictType> getAllList();
List<DictType> getDictTypeList();
}