|
|
@@ -12,20 +12,36 @@
|
|
12
|
12
|
<result property="passengerName" column="passenger_name" />
|
|
13
|
13
|
<result property="complaintType" column="complaint_type" />
|
|
14
|
14
|
<result property="complaintDesc" column="complaint_desc" />
|
|
|
15
|
+ <result property="passengerDemand" column="passenger_demand" />
|
|
|
16
|
+ <result property="channelSource" column="channel_source" />
|
|
|
17
|
+ <result property="isResponsible" column="is_responsible" />
|
|
|
18
|
+ <result property="responsibleCaptain" column="responsible_captain" />
|
|
|
19
|
+ <result property="teamInternalDuty" column="team_internal_duty" />
|
|
15
|
20
|
<result property="resultHandling" column="result_handling" />
|
|
16
|
21
|
<result property="deductScore" column="deduct_score" />
|
|
17
|
22
|
<result property="evidenceFile" column="evidence_file" />
|
|
18
|
23
|
<result property="remark" column="remark" />
|
|
19
|
24
|
<result property="importBatch" column="import_batch" />
|
|
20
|
|
- <result property="sourceType" column="source_type" /> <result property="createBy" column="create_by" />
|
|
|
25
|
+ <result property="sourceType" column="source_type" />
|
|
|
26
|
+ <result property="createBy" column="create_by" />
|
|
21
|
27
|
<result property="createTime" column="create_time" />
|
|
22
|
|
- <result property="updateBy" column="update_by" />
|
|
|
28
|
+ <result property="updateBy" column="update_by" />
|
|
23
|
29
|
<result property="updateTime" column="update_time" />
|
|
24
|
30
|
<result property="syncFlag" column="sync_flag" />
|
|
|
31
|
+ <result property="responsibleId" column="responsible_id" />
|
|
|
32
|
+ <result property="deptId" column="dept_id" />
|
|
|
33
|
+ <result property="teamId" column="team_id" />
|
|
|
34
|
+ <result property="groupId" column="group_id" />
|
|
|
35
|
+ <result property="groupName" column="group_name" />
|
|
25
|
36
|
</resultMap>
|
|
26
|
37
|
|
|
27
|
38
|
<sql id="selectVo">
|
|
28
|
|
- SELECT id, record_date,dept_name,team_name,responsible_name,flight_no,passenger_name,complaint_type,complaint_desc,result_handling,deduct_score,evidence_file,remark,import_batch,source_type, create_by, create_time, update_by, update_time, sync_flag
|
|
|
39
|
+ SELECT id, record_date, dept_name, dept_id, team_name, team_id, group_name, group_id,
|
|
|
40
|
+ responsible_name, responsible_id, flight_no, passenger_name,
|
|
|
41
|
+ complaint_type, complaint_desc, passenger_demand, channel_source,
|
|
|
42
|
+ is_responsible, responsible_captain, team_internal_duty,
|
|
|
43
|
+ result_handling, deduct_score, evidence_file, remark,
|
|
|
44
|
+ import_batch, source_type, create_by, create_time, update_by, update_time, sync_flag
|
|
29
|
45
|
FROM ledger_complaint
|
|
30
|
46
|
WHERE del_flag = '0'
|
|
31
|
47
|
</sql>
|
|
|
@@ -49,4 +65,4 @@
|
|
49
|
65
|
set sync_flag = '1'
|
|
50
|
66
|
where sync_flag = '0'
|
|
51
|
67
|
</update>
|
|
52
|
|
-</mapper>
|
|
|
68
|
+</mapper>
|