Commit 88011a9e6945b0b7f8af00245ead9a976f4a6c05

Authored by 张志伟
2 parents 43ea24d7 31678152

Merge remote-tracking branch 'origin/dev' into test

fw-shirasawa-dao/src/main/resources/mapper/SecretReportHistoryMapper.xml
... ... @@ -15,8 +15,7 @@
15 15 t1.staff_id staff_id,
16 16 t1.staff_name staff_name,
17 17 t1.customer_id customer_id,
18   - t1.customer_id customer_id,
19   - t1.customer_name customer_name,
  18 + ifnull(t1.customer_name, t2.customer_name) customer_name,
20 19 t1.call_type dial_type,
21 20 t1.call_time call_time,
22 21 t1.call_duration call_duration,
... ...
fw-shirasawa-domain/src/main/java/cn/fw/shirasawa/domain/vo/SecretReportHistoryVO.java
... ... @@ -3,6 +3,7 @@ package cn.fw.shirasawa.domain.vo;
3 3 import cn.fw.shirasawa.domain.enums.CallTypeEnum;
4 4 import lombok.Data;
5 5  
  6 +import java.time.LocalDateTime;
6 7 import java.util.Date;
7 8 import java.util.Objects;
8 9  
... ... @@ -58,7 +59,7 @@ public class SecretReportHistoryVO {
58 59 /**
59 60 * 呼叫时间
60 61 */
61   - private Date callTime;
  62 + private LocalDateTime callTime;
62 63 /**
63 64 * 通话时长
64 65 */
... ...