fix manager-api bug

This commit is contained in:
pengzhisheng
2025-03-06 21:16:31 +08:00
parent 6db25ffcfe
commit 1b64959e2c
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();
}