| | |
| | | package com.moral.api.entity; |
| | | |
| | | |
| | | import com.moral.api.pojo.bean.BaseInvalidEntity; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | |
| | | |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class Allocation extends Model<Allocation> { |
| | | public class Allocation extends BaseInvalidEntity<Allocation> { |
| | | |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | |
| | | /** |
| | | * 自查or核查 |
| | | */ |
| | | private String escalationType; |
| | | private Integer escalationType; |
| | | |
| | | /** |
| | | * 上报时间 |
| | |
| | | /** |
| | | * 状态 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; |
| | | |
| | | |
| | | } |