|
@ -34,13 +34,24 @@ public class PrescriptionExpressage extends IdEntity{
|
|
|
private String streetName; //收货人街道名称
|
|
|
private Integer price; //快递的配送费用 单位是分
|
|
|
private Integer weight; //快递重量 单位是g
|
|
|
//配送人信息
|
|
|
private String hospitalName; // 如果配送方式是健管师那么这个字段存服务站名称,如果是快递配送那么是快递公司名称
|
|
|
private String hospitalAddress; // 机构地址
|
|
|
private String expressageName; //配送人名称
|
|
|
private String expressageCode; //配送人code
|
|
|
private String expressageMobile; //配送人电话
|
|
|
private String hospitalName; // 如果配送方式是健管师那么这个字段存服务站名称,如果是快递配送那么是快递公司名称
|
|
|
private String hospitalAddress; // 机构地址
|
|
|
private Date createTime; //创建的时间
|
|
|
private Date expressageTime; //开始配送的时间
|
|
|
|
|
|
//医院接收快递信息
|
|
|
private String acceptMobile; //医院药品接收人电话
|
|
|
private String acceptCode; //医院药品接收人Code
|
|
|
private String acceptName; //医院药品接收人名称
|
|
|
private String acceptHospital; //医院药品接收人名称
|
|
|
private String acceptHospitalName; //医院药品接收人名称
|
|
|
private Date acceptTime; //接收的时间
|
|
|
|
|
|
private Integer oneselfPickupFlg;//是否自取 1是 0否
|
|
|
private Date createTime; //创建的时间
|
|
|
private Integer del; //1可用 0删除
|
|
|
|
|
|
|
|
@ -242,4 +253,60 @@ public class PrescriptionExpressage extends IdEntity{
|
|
|
public void setHospitalAddress(String hospitalAddress) {
|
|
|
this.hospitalAddress = hospitalAddress;
|
|
|
}
|
|
|
|
|
|
public String getAcceptMobile() {
|
|
|
return acceptMobile;
|
|
|
}
|
|
|
|
|
|
public void setAcceptMobile(String acceptMobile) {
|
|
|
this.acceptMobile = acceptMobile;
|
|
|
}
|
|
|
|
|
|
public String getAcceptCode() {
|
|
|
return acceptCode;
|
|
|
}
|
|
|
|
|
|
public void setAcceptCode(String acceptCode) {
|
|
|
this.acceptCode = acceptCode;
|
|
|
}
|
|
|
|
|
|
public String getAcceptName() {
|
|
|
return acceptName;
|
|
|
}
|
|
|
|
|
|
public void setAcceptName(String acceptName) {
|
|
|
this.acceptName = acceptName;
|
|
|
}
|
|
|
|
|
|
public String getAcceptHospital() {
|
|
|
return acceptHospital;
|
|
|
}
|
|
|
|
|
|
public void setAcceptHospital(String acceptHospital) {
|
|
|
this.acceptHospital = acceptHospital;
|
|
|
}
|
|
|
|
|
|
public String getAcceptHospitalName() {
|
|
|
return acceptHospitalName;
|
|
|
}
|
|
|
|
|
|
public void setAcceptHospitalName(String acceptHospitalName) {
|
|
|
this.acceptHospitalName = acceptHospitalName;
|
|
|
}
|
|
|
|
|
|
public Date getExpressageTime() {
|
|
|
return expressageTime;
|
|
|
}
|
|
|
|
|
|
public void setExpressageTime(Date expressageTime) {
|
|
|
this.expressageTime = expressageTime;
|
|
|
}
|
|
|
|
|
|
public Date getAcceptTime() {
|
|
|
return acceptTime;
|
|
|
}
|
|
|
|
|
|
public void setAcceptTime(Date acceptTime) {
|
|
|
this.acceptTime = acceptTime;
|
|
|
}
|
|
|
}
|