StoreDTO.java
3.06 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
package vion.dto;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Getter;
import lombok.Setter;
import org.springframework.format.annotation.DateTimeFormat;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.List;
/**
* 门店信息
*/
@Getter
@Setter
public class StoreDTO extends BaseDTO {
private Long id;
private List<Long> ids;
/**
* 门店名称
*/
private String name;
/**
* 销售人
*/
private Integer salesperson;
/**
* 客户姓名
*/
private String customerName;
/**
* 实施类型:0纯供货、1供货+安装、3续保、4维修
*/
private Integer implementType;
/**
* 项目状态:0待确认、1进行中、2已完成、3挂起
*/
private Integer projectState;
/**
* 联系人(多个联系人逗号隔开)
*/
private String contacts;
/**
* 创建者
*/
private Long createUser;
/**
* 修改者
*/
private Long modifyUser;
/**
* 备注
*/
private String remark;
/**
* 项目阶段
*/
private Integer projectStage;
/**
* 集团id
*/
private Long accountId;
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime startdate;
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime enddate;
/**
* 立项日期
*/
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private LocalDate estDate;
@DateTimeFormat(pattern = "yyyy-MM-dd")
private LocalDate estDateStart;
@DateTimeFormat(pattern = "yyyy-MM-dd")
private LocalDate estDateEnd;
/**
* 主合同id
*/
private Long masterContract;
/**
* 维保状态
*/
private String maintainStatus;
/**
* 产品线属性
*/
private Integer productLine;
/**
* 是否重点项目 0:不是 1:是
*/
private Integer isImportant;
/**
* 任务详情
*/
private String taskDetail;
/**
* 预计完成日期
*/
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private LocalDate finishDate;
/**
* 完成百分比
*/
private Double percentage;
/**
* 当前卡点
*/
private String stuckPoint;
/**
* 标签id
*/
private Long tagId;
/**
* 项目负责人 or 项目经理
*/
private Long mainUser;
/**
* 主要产品
*/
private Integer mainProduct;
/**
* 点位数量
*/
private Integer pointNum;
/**
* 计划完成日期
*/
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
private LocalDate planFinishDate;
/**
* 项目规模
*/
private Integer projectSize;
/**
* 巡检次数
*/
private Integer inspectCount;
/**
* 巡检要求
*/
private String inspectRemark;
/**
* 施工数量
*/
private Integer constructionCount;
private Long sourceId;
private Long targetId;
}