提交 c44f1ded authored 作者: 李秋林's avatar 李秋林

表基本数据remark改为可选

上级 7b223b90
package com.sfa.common.core.enums;
/**
* @author : liqiulin
* @date : 2024-08-05 15
* @describe :
*/
public enum StatusType {
/**
* 有效
*/
VALID(0),
INVALID(1),
;
private Integer type;
public Integer getType() {
return type;
}
StatusType(Integer type) {
this.type = type;
}
}
package com.sfa.common.core.web.domain; package com.sfa.common.core.web.domain;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable; import java.io.Serializable;
import java.util.Date; import java.util.Date;
...@@ -31,6 +33,7 @@ public class BaseDo implements Serializable ...@@ -31,6 +33,7 @@ public class BaseDo implements Serializable
private Date updateTime; private Date updateTime;
/** 备注 */ /** 备注 */
@TableField(exist = false)
private String remark; private String remark;
public String getCreateBy() { public String getCreateBy() {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论