提交 7459b6b5 authored 作者: 000516's avatar 000516 提交者: Coding

表基本数据remark改为可选

Merge Request: 表基本数据remark改为可选 Created By: @李秋林 Accepted By: @李秋林 URL: https://g-pkkp8204.coding.net/p/wangxiaolu-sfa/d/wangxiaolu-sfa-common-core/git/merge/44?initial=true
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 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论