cjl
2023-12-14 6992aaf0587c09f7c511c1afd12e1519d91363d3
screen-api/src/main/java/com/moral/api/entity/Allocation.java
@@ -1,6 +1,7 @@
package com.moral.api.entity;
import com.moral.api.pojo.bean.BaseInvalidEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
@@ -13,7 +14,7 @@
@Data
@EqualsAndHashCode(callSuper = false)
public class Allocation extends Model<Allocation> {
public class Allocation extends BaseInvalidEntity<Allocation> {
    private static final long serialVersionUID = 1L;
@@ -32,7 +33,7 @@
    /**
     * 自查or核查
     */
    private String escalationType;
    private Integer escalationType;
    /**
     * 上报时间
@@ -129,31 +130,25 @@
    /**
     * 状态 0 创建  1 整改 2审核 3 拒绝 4 通过
     */
    private String state;
    /**
     * 是否删除
     */
    private String isDel;
    /**
     * 是否作废
     */
    private String isInvalid;
    private Integer state;
    /**
     * 作废理由
     */
    private String invalidReason;
    private Integer createId;
    private String createName;
    private Date createTime;
    private Integer updateId;
    private String updateName;
    private Date updateTime;
    /**
     * 重点任务类型
     */
    private Integer keyPoint;
    private String latitude;
    private String longitude;
    /**
     * 省市区地址
     */
    private String address;
    /**
     * 详细地址
     */
    private String name;
}