2025-12-18康农种业项目初始化

This commit is contained in:
2025-12-18 10:34:48 +08:00
commit 77c3e5833e
480 changed files with 29930 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
package com.fasc.open.api.enums.seal;
/**
* @author zhoufucheng
* @date 2022/12/5 20:21
*/
public enum SetSealStatusEnum {
ENABLE("enable", "启用"),
DISABLE("disable", "禁用"),
;
private String code;
private String remark;
SetSealStatusEnum(String code, String remark) {
this.code = code;
this.remark = remark;
}
public String getCode() {
return code;
}
public String getRemark() {
return remark;
}
}