refactor(perf): 重构车间考核参数配置实体类结构
- 移除 JsonFormat 注解依赖 - 将 createdAt 和 updatedAt 字段替换为 createTime、createBy、updateTime、updateBy 字段 - 添加 delFlag 删除标志字段并配置 TableLogic 注解 - 更新备注字段的注释说明 - 修改查询条件构建逻辑以适配新字段结构 - 更新数据映射配置以匹配数据库表结构变化
This commit is contained in:
@@ -7,7 +7,6 @@ import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
|
||||
/**
|
||||
* 车间考核参数配置对象 perf_dept_config
|
||||
@@ -68,16 +67,14 @@ public class PerfDeptConfig extends BaseEntity {
|
||||
*/
|
||||
private Date month;
|
||||
/**
|
||||
*
|
||||
* 备注
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
*
|
||||
* 删除标志(0=正常 1=已删除)
|
||||
*/
|
||||
private Date createdAt;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private Date updatedAt;
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user