浏览代码

客服系統

trick9191 7 年之前
父节点
当前提交
db933ef570

+ 6 - 3
common/common-entity/src/main/java/com/yihu/wlyy/entity/call/CallRecord.java

@ -1,5 +1,6 @@
package com.yihu.wlyy.entity.call;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.yihu.wlyy.entity.IdEntity;
import javax.persistence.Entity;
@ -33,7 +34,7 @@ public class CallRecord extends IdEntity {
    private String  ssc; //社保卡号
    private String  doctor; //签约医生code
    private String  doctorName; //签约医生姓名
    private Long  adminTeamCode; //签约医生团队
    private Long  adminTeamCode;
    public String getCode() {
        return code;
@ -82,7 +83,7 @@ public class CallRecord extends IdEntity {
    public void setServiceContent(String serviceContent) {
        this.serviceContent = serviceContent;
    }
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    public Date getCreateTime() {
        return createTime;
    }
@ -90,7 +91,7 @@ public class CallRecord extends IdEntity {
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    public Date getEndTime() {
        return endTime;
    }
@ -99,6 +100,7 @@ public class CallRecord extends IdEntity {
        this.endTime = endTime;
    }
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    public Date getUpdateTime() {
        return updateTime;
    }
@ -107,6 +109,7 @@ public class CallRecord extends IdEntity {
        this.updateTime = updateTime;
    }
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    public Date getCallTime() {
        return callTime;
    }

+ 7 - 3
common/common-entity/src/main/java/com/yihu/wlyy/entity/call/CallService.java

@ -1,5 +1,6 @@
package com.yihu.wlyy.entity.call;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.yihu.wlyy.entity.IdEntity;
import javax.persistence.Entity;
@ -43,7 +44,7 @@ public class CallService extends IdEntity {
    private String orderTime; //预约时间段
    private String user; //创建人
    private String userName; //创建人
    private String adminTeamCode; //团队id
    private Long adminTeamCode; //团队id
    public String getCode() {
        return code;
@ -141,6 +142,7 @@ public class CallService extends IdEntity {
        this.state = state;
    }
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    public Date getCreateTime() {
        return createTime;
    }
@ -149,6 +151,7 @@ public class CallService extends IdEntity {
        this.createTime = createTime;
    }
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    public Date getUpdateTime() {
        return updateTime;
    }
@ -181,6 +184,7 @@ public class CallService extends IdEntity {
        this.dealType = dealType;
    }
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    public Date getDealTime() {
        return dealTime;
    }
@ -285,11 +289,11 @@ public class CallService extends IdEntity {
        this.user = user;
    }
    public String getAdminTeamCode() {
    public Long getAdminTeamCode() {
        return adminTeamCode;
    }
    public void setAdminTeamCode(String adminTeamCode) {
    public void setAdminTeamCode(Long adminTeamCode) {
        this.adminTeamCode = adminTeamCode;
    }
}

+ 5 - 2
patient-co-manage/wlyy-manage/src/main/java/com/yihu/wlyy/entity/call/CallRecord.java

@ -1,5 +1,6 @@
package com.yihu.wlyy.entity.call;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.yihu.wlyy.entity.IdEntity;
import javax.persistence.Entity;
@ -82,7 +83,7 @@ public class CallRecord extends IdEntity {
    public void setServiceContent(String serviceContent) {
        this.serviceContent = serviceContent;
    }
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    public Date getCreateTime() {
        return createTime;
    }
@ -90,7 +91,7 @@ public class CallRecord extends IdEntity {
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    public Date getEndTime() {
        return endTime;
    }
@ -99,6 +100,7 @@ public class CallRecord extends IdEntity {
        this.endTime = endTime;
    }
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    public Date getUpdateTime() {
        return updateTime;
    }
@ -107,6 +109,7 @@ public class CallRecord extends IdEntity {
        this.updateTime = updateTime;
    }
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    public Date getCallTime() {
        return callTime;
    }

+ 4 - 0
patient-co-manage/wlyy-manage/src/main/java/com/yihu/wlyy/entity/call/CallService.java

@ -1,5 +1,6 @@
package com.yihu.wlyy.entity.call;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.yihu.wlyy.entity.IdEntity;
import javax.persistence.Entity;
@ -141,6 +142,7 @@ public class CallService extends IdEntity {
        this.state = state;
    }
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    public Date getCreateTime() {
        return createTime;
    }
@ -149,6 +151,7 @@ public class CallService extends IdEntity {
        this.createTime = createTime;
    }
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    public Date getUpdateTime() {
        return updateTime;
    }
@ -181,6 +184,7 @@ public class CallService extends IdEntity {
        this.dealType = dealType;
    }
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
    public Date getDealTime() {
        return dealTime;
    }