yanghb
2024-12-17 1287337fd0b0c156ec79712f9a600ebeffefe3a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package com.zzg.common.core.domain.entity.state;
 
import com.baomidou.mybatisplus.annotation.*;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.zzg.common.core.domain.BaseEntity;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
 
@Data
@TableName("state_project")
public class StateProject extends BaseEntity {
    @TableId(type = IdType.ASSIGN_UUID)
    private String id;
    @TableLogic(value = "0", delval = "1")
    private Integer delFlag = 0;
    @TableField(value = "project_no")
    private String projectNo;
    @TableField(value = "project_name")
    private String projectName;
    @TableField(value = "status")
    private Integer status;
    @TableField(value = "street")
    private String street;
    @TableField(value = "department")
    private String department;
 
    @TableField(value = "start_time")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date startTime;
    private String workflowId;
    private String fileUrl;
 
    //征收转模拟时间
    private Date simulatedTime;
    private Date levyTime;
    //作废时间
    private Date cancelTime;
 
    //完成时间
    private Date finishedTime;
    /**
     * 需要评估 是否需要二次评估  0 不需要  1需要
     */
    @TableField(value = "is_need_evaluate")
    private Integer isNeedEvaluate;
    private Integer auditStatus;
    private Integer priceStatus;
    //实施单位
    @TableField(exist = false)
    private String collectionEnforcementDepartment;
    private Integer preStatusByCancel;
    private Integer stage;
}