|
@ -1,7 +1,61 @@
|
|
|
package com.yihu.wlyy.entity.patient;
|
|
|
|
|
|
import com.yihu.wlyy.entity.IdEntity;
|
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* Created by Trick on 2017/7/14.
|
|
|
*/
|
|
|
public class SignFamilyServer {
|
|
|
@Entity
|
|
|
@Table(name = "wlyy_sign_family_server")
|
|
|
public class SignFamilyServer extends IdEntity {
|
|
|
|
|
|
private String signCode; //签约code
|
|
|
private String serverType; //服务类型
|
|
|
private String serverTypeName; //服务类型名称
|
|
|
private Date czrq; //修改时间
|
|
|
private Date createTime; //创建时间
|
|
|
|
|
|
public String getSignCode() {
|
|
|
return signCode;
|
|
|
}
|
|
|
|
|
|
public void setSignCode(String signCode) {
|
|
|
this.signCode = signCode;
|
|
|
}
|
|
|
|
|
|
public String getServerType() {
|
|
|
return serverType;
|
|
|
}
|
|
|
|
|
|
public void setServerType(String serverType) {
|
|
|
this.serverType = serverType;
|
|
|
}
|
|
|
|
|
|
public String getServerTypeName() {
|
|
|
return serverTypeName;
|
|
|
}
|
|
|
|
|
|
public void setServerTypeName(String serverTypeName) {
|
|
|
this.serverTypeName = serverTypeName;
|
|
|
}
|
|
|
|
|
|
public Date getCzrq() {
|
|
|
return czrq;
|
|
|
}
|
|
|
|
|
|
public void setCzrq(Date czrq) {
|
|
|
this.czrq = czrq;
|
|
|
}
|
|
|
|
|
|
public Date getCreateTime() {
|
|
|
return createTime;
|
|
|
}
|
|
|
|
|
|
public void setCreateTime(Date createTime) {
|
|
|
this.createTime = createTime;
|
|
|
}
|
|
|
}
|