- delete 改为 deleted 统一

This commit is contained in:
sin 2019-03-23 09:14:57 +08:00
parent cc223fa2b3
commit 450d2c96c8
1 changed files with 4 additions and 4 deletions

View File

@ -8,10 +8,10 @@ import cn.iocoder.common.framework.dataobject.DeletableDO;
* @author Sin
* @time 2019-03-22 21:15
*/
public enum DeleteStatusEnum {
public enum DeletedStatusEnum {
DELETE_NO(0, "正常(未删除)"),
DELETE_YES(1, "删除");
DELETED_NO(0, "正常(未删除)"),
DELETED_YES(1, "删除");
/**
* 状态值
@ -22,7 +22,7 @@ public enum DeleteStatusEnum {
*/
private String name;
DeleteStatusEnum(Integer value, String name) {
DeletedStatusEnum(Integer value, String name) {
this.value = value;
this.name = name;
}