包名调整

This commit is contained in:
2023-06-08 14:11:08 +08:00
parent ac4ad7d679
commit 818538f34d
80 changed files with 184 additions and 202 deletions

View File

@@ -0,0 +1,32 @@
package com.njcn.cssystem.enums;
import lombok.Getter;
/**
* @author xuyang
* @version 1.0.0
* @date 2023年04月17日 10:50
*/
@Getter
public enum CsSystemResponseEnum {
/**
* A0301 ~ A0399 用于治理系统模块的枚举
* <p>
*/
DICT_REPEAT("A0301","字典数据重复!"),
CS_SYSTEM_COMMON_ERROR("A00302","治理系统模块异常"),
;
private final String code;
private final String message;
CsSystemResponseEnum(String code, String message) {
this.code = code;
this.message = message;
}
}