Commit b916bbef authored by liqin's avatar liqin 💬

bug fixed

parent 4459faea
package cn.wisenergy.chnmuseum.party.common.enums;
/**
* 审核状态
*/
public enum AuditOperationEnum {
ADD(1, "新增"),
EDIT(2, "修改"),
REMOVE(2, "下架"),
DELETE(3, "删除");
// 错误编码
private Integer code;
// 信息
private String operation;
// 相应编码有参构造函数
AuditOperationEnum(Integer code, String operation) {
this.code = code;
this.operation = operation;
}
public Integer getCode() {
return code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getOperation() {
return operation;
}
public void setOperation(String operation) {
this.operation = operation;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment