浏览代码

新增收件时间,默认先放空

DESKTOP-G6NQ3SI\dante 7 年之前
父节点
当前提交
7b6f43ab60

+ 10 - 0
patient-co-service/wlyy_service/src/main/java/com/yihu/wlyy/service/entity/prescription/VO/PrescriptionExpressageVO.java

@ -49,6 +49,8 @@ public class PrescriptionExpressageVO extends Result {
    //付款方式:1:寄方付,2:收方付 3:第三方付
    private Integer pay_method;
    private String receive_time;//收件时间
    //订单的药品详情
    private List<PrescriptionInfo> infos = new ArrayList<>();
@ -195,4 +197,12 @@ public class PrescriptionExpressageVO extends Result {
    public void setDestcode(String destcode) {
        this.destcode = destcode;
    }
    public String getReceive_time() {
        return receive_time;
    }
    public void setReceive_time(String receive_time) {
        this.receive_time = receive_time;
    }
}

+ 1 - 0
patient-co-service/wlyy_service/src/main/java/com/yihu/wlyy/service/service/prescription/PrescriptionService.java

@ -875,6 +875,7 @@ public class PrescriptionService extends ZysoftBaseService{
        vo.setD_phone(prescriptionExpressage.getPhone());
        vo.setPay_method(2);
        vo.setExpress_type(11);
        vo.setReceive_time("");//---2017.08.22-huangwnejie,新增收件时间,默认先放空
        vo.setInfos(prescriptionInfolist);