自动化立体仓库 - WMS系统
#
LSH
2023-05-26 cb7339c12d6cd3f4d1668d27d34dbb4b515cc6c1
src/main/java/com/zy/asrs/entity/ManLocDetl.java
@@ -210,9 +210,9 @@
    private Integer owner;
    /**
     * 是否付款
     * 货物形态:0:代采、1:仓储
     */
    @ApiModelProperty(value= "是否付款0:未付款、1:已付款   ")
    @ApiModelProperty(value= "货物形态:0:代采、1:仓储")
    private Integer payment;
    /**
@@ -225,7 +225,7 @@
    public ManLocDetl() {}
    public ManLocDetl(Long hostId, String locNo,Long nodeId,String zpallet,Double anfme,String matnr,String maktx,String name,String specs,String model,String batch,String unit,String barcode,Long docId,String docNum,String custName,Integer itemNum,Integer count,Double weight,Integer status,Long createBy,Date createTime,Long updateBy,Date modiTime,String memo,String uuid) {
    public ManLocDetl(Long hostId, String locNo,Long nodeId,String zpallet,Double anfme,String matnr,String maktx,String name,String specs,String model,String batch,String unit,String barcode,Long docId,String docNum,String custName,Integer itemNum,Integer count,Double weight,Integer status,Long createBy,Date createTime,Long updateBy,Date modiTime,String memo,int owner ,int payment,String uuid) {
        this.hostId = hostId;
        this.nodeId = nodeId;
        this.zpallet = zpallet;
@@ -249,6 +249,8 @@
        this.updateBy = updateBy;
        this.modiTime = modiTime;
        this.memo = memo;
        this.owner = owner;
        this.payment = payment;
        this.uuid = uuid;
    }
@@ -292,9 +294,9 @@
        if (null == this.payment){ return null; }
        switch (this.payment){
            case 1:
                return "已付款";
                return "仓储";
            case 0:
                return "未付款";
                return "代采";
            default:
                return String.valueOf(this.payment);
        }