|
@ -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;
|
|
|
}
|