|
|
@@ -21,28 +21,37 @@ public class LedgerComplaint extends BaseEntity {
|
|
21
|
21
|
private Long id;
|
|
22
|
22
|
|
|
23
|
23
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
24
|
|
- @Excel(name = "记录日期", width = 20, dateFormat = "yyyy-MM-dd")
|
|
|
24
|
+ @Excel(name = "时间", width = 20, dateFormat = "yyyy-MM-dd")
|
|
25
|
25
|
private Date recordDate;
|
|
26
|
26
|
|
|
27
|
27
|
@Excel(name = "部门名称")
|
|
28
|
28
|
private String deptName;
|
|
29
|
29
|
|
|
30
|
|
- @Excel(name = "队室/班组")
|
|
|
30
|
+ private Long deptId;
|
|
|
31
|
+
|
|
31
|
32
|
private String teamName;
|
|
32
|
33
|
|
|
|
34
|
+ private Long teamId;
|
|
|
35
|
+
|
|
|
36
|
+ private String groupName;
|
|
|
37
|
+
|
|
|
38
|
+ private Long groupId;
|
|
|
39
|
+
|
|
33
|
40
|
@Excel(name = "责任人")
|
|
34
|
41
|
private String responsibleName;
|
|
35
|
42
|
|
|
|
43
|
+ private Long responsibleId;
|
|
|
44
|
+
|
|
36
|
45
|
@Excel(name = "航班号")
|
|
37
|
46
|
private String flightNo;
|
|
38
|
47
|
|
|
39
|
48
|
@Excel(name = "旅客姓名")
|
|
40
|
49
|
private String passengerName;
|
|
41
|
50
|
|
|
42
|
|
- @Excel(name = "投诉类型")
|
|
|
51
|
+ @Excel(name = "类别")
|
|
43
|
52
|
private String complaintType;
|
|
44
|
53
|
|
|
45
|
|
- @Excel(name = "投诉内容")
|
|
|
54
|
+ @Excel(name = "投诉情况")
|
|
46
|
55
|
private String complaintDesc;
|
|
47
|
56
|
|
|
48
|
57
|
@Excel(name = "旅客诉求")
|
|
|
@@ -54,13 +63,7 @@ public class LedgerComplaint extends BaseEntity {
|
|
54
|
63
|
@Excel(name = "是否有责")
|
|
55
|
64
|
private String isResponsible;
|
|
56
|
65
|
|
|
57
|
|
- @Excel(name = "责任队长")
|
|
58
|
|
- private String responsibleCaptain;
|
|
59
|
|
-
|
|
60
|
|
- @Excel(name = "队室内勤")
|
|
61
|
|
- private String teamInternalDuty;
|
|
62
|
|
-
|
|
63
|
|
- @Excel(name = "处理结果")
|
|
|
66
|
+ @Excel(name = "处理进度")
|
|
64
|
67
|
private String resultHandling;
|
|
65
|
68
|
|
|
66
|
69
|
@Excel(name = "扣分")
|
|
|
@@ -69,9 +72,6 @@ public class LedgerComplaint extends BaseEntity {
|
|
69
|
72
|
@Excel(name = "佐证附件")
|
|
70
|
73
|
private String evidenceFile;
|
|
71
|
74
|
|
|
72
|
|
- @Excel(name = "备注")
|
|
73
|
|
- private String remark;
|
|
74
|
|
-
|
|
75
|
75
|
private String importBatch;
|
|
76
|
76
|
|
|
77
|
77
|
@Excel(name = "数据来源")
|
|
|
@@ -80,13 +80,6 @@ public class LedgerComplaint extends BaseEntity {
|
|
80
|
80
|
@Excel(name = "同步标志(0=未同步;1=已同步)")
|
|
81
|
81
|
private String syncFlag;
|
|
82
|
82
|
|
|
83
|
|
- // ID字段
|
|
84
|
|
- private Long responsibleId;
|
|
85
|
|
- private Long deptId;
|
|
86
|
|
- private Long teamId;
|
|
87
|
|
- private Long groupId;
|
|
88
|
|
- private String groupName;
|
|
89
|
|
-
|
|
90
|
83
|
public Long getId() { return id; }
|
|
91
|
84
|
public void setId(Long id) { this.id = id; }
|
|
92
|
85
|
|
|
|
@@ -96,12 +89,27 @@ public class LedgerComplaint extends BaseEntity {
|
|
96
|
89
|
public String getDeptName() { return deptName; }
|
|
97
|
90
|
public void setDeptName(String deptName) { this.deptName = deptName; }
|
|
98
|
91
|
|
|
|
92
|
+ public Long getDeptId() { return deptId; }
|
|
|
93
|
+ public void setDeptId(Long deptId) { this.deptId = deptId; }
|
|
|
94
|
+
|
|
99
|
95
|
public String getTeamName() { return teamName; }
|
|
100
|
96
|
public void setTeamName(String teamName) { this.teamName = teamName; }
|
|
101
|
97
|
|
|
|
98
|
+ public Long getTeamId() { return teamId; }
|
|
|
99
|
+ public void setTeamId(Long teamId) { this.teamId = teamId; }
|
|
|
100
|
+
|
|
|
101
|
+ public String getGroupName() { return groupName; }
|
|
|
102
|
+ public void setGroupName(String groupName) { this.groupName = groupName; }
|
|
|
103
|
+
|
|
|
104
|
+ public Long getGroupId() { return groupId; }
|
|
|
105
|
+ public void setGroupId(Long groupId) { this.groupId = groupId; }
|
|
|
106
|
+
|
|
102
|
107
|
public String getResponsibleName() { return responsibleName; }
|
|
103
|
108
|
public void setResponsibleName(String responsibleName) { this.responsibleName = responsibleName; }
|
|
104
|
109
|
|
|
|
110
|
+ public Long getResponsibleId() { return responsibleId; }
|
|
|
111
|
+ public void setResponsibleId(Long responsibleId) { this.responsibleId = responsibleId; }
|
|
|
112
|
+
|
|
105
|
113
|
public String getFlightNo() { return flightNo; }
|
|
106
|
114
|
public void setFlightNo(String flightNo) { this.flightNo = flightNo; }
|
|
107
|
115
|
|
|
|
@@ -123,12 +131,6 @@ public class LedgerComplaint extends BaseEntity {
|
|
123
|
131
|
public String getIsResponsible() { return isResponsible; }
|
|
124
|
132
|
public void setIsResponsible(String isResponsible) { this.isResponsible = isResponsible; }
|
|
125
|
133
|
|
|
126
|
|
- public String getResponsibleCaptain() { return responsibleCaptain; }
|
|
127
|
|
- public void setResponsibleCaptain(String responsibleCaptain) { this.responsibleCaptain = responsibleCaptain; }
|
|
128
|
|
-
|
|
129
|
|
- public String getTeamInternalDuty() { return teamInternalDuty; }
|
|
130
|
|
- public void setTeamInternalDuty(String teamInternalDuty) { this.teamInternalDuty = teamInternalDuty; }
|
|
131
|
|
-
|
|
132
|
134
|
public String getResultHandling() { return resultHandling; }
|
|
133
|
135
|
public void setResultHandling(String resultHandling) { this.resultHandling = resultHandling; }
|
|
134
|
136
|
|
|
|
@@ -138,9 +140,6 @@ public class LedgerComplaint extends BaseEntity {
|
|
138
|
140
|
public String getEvidenceFile() { return evidenceFile; }
|
|
139
|
141
|
public void setEvidenceFile(String evidenceFile) { this.evidenceFile = evidenceFile; }
|
|
140
|
142
|
|
|
141
|
|
- public String getRemark() { return remark; }
|
|
142
|
|
- public void setRemark(String remark) { this.remark = remark; }
|
|
143
|
|
-
|
|
144
|
143
|
public String getImportBatch() { return importBatch; }
|
|
145
|
144
|
public void setImportBatch(String importBatch) { this.importBatch = importBatch; }
|
|
146
|
145
|
|
|
|
@@ -149,19 +148,4 @@ public class LedgerComplaint extends BaseEntity {
|
|
149
|
148
|
|
|
150
|
149
|
public String getSyncFlag() { return syncFlag; }
|
|
151
|
150
|
public void setSyncFlag(String syncFlag) { this.syncFlag = syncFlag; }
|
|
152
|
|
-
|
|
153
|
|
- public Long getResponsibleId() { return responsibleId; }
|
|
154
|
|
- public void setResponsibleId(Long responsibleId) { this.responsibleId = responsibleId; }
|
|
155
|
|
-
|
|
156
|
|
- public Long getDeptId() { return deptId; }
|
|
157
|
|
- public void setDeptId(Long deptId) { this.deptId = deptId; }
|
|
158
|
|
-
|
|
159
|
|
- public Long getTeamId() { return teamId; }
|
|
160
|
|
- public void setTeamId(Long teamId) { this.teamId = teamId; }
|
|
161
|
|
-
|
|
162
|
|
- public Long getGroupId() { return groupId; }
|
|
163
|
|
- public void setGroupId(Long groupId) { this.groupId = groupId; }
|
|
164
|
|
-
|
|
165
|
|
- public String getGroupName() { return groupName; }
|
|
166
|
|
- public void setGroupName(String groupName) { this.groupName = groupName; }
|
|
167
|
|
-}
|
|
|
151
|
+}
|