自动化立体仓库 - WMS系统
chen.llin
2025-12-24 3929fa30f8c98403beb886cf7a4cbf90894add02
src/main/java/com/zy/asrs/entity/OrderPakout.java
@@ -8,11 +8,11 @@
import com.core.common.SpringUtils;
import com.zy.asrs.service.DocTypeService;
import com.zy.asrs.service.OrderSettleService;
import com.zy.common.utils.Synchro;
import com.zy.system.entity.User;
import com.zy.system.service.UserService;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.beans.BeanUtils;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
@@ -94,7 +94,7 @@
     * 客户编号
     */
    @ApiModelProperty(value = "客户编号")
    private Long cstmr;
    private String cstmr;
    /**
     * 客户
@@ -276,10 +276,24 @@
    @TableField("pakin_pakout_status")
    private Integer pakinPakoutStatus;
    /**
     * 月结ID
     */
    @ApiModelProperty(value = "月结ID")
    @TableField("monthly_settle_id")
    private Long monthlySettleId;
    /**
     * 月结编号
     */
    @ApiModelProperty(value = "月结编号")
    @TableField("monthly_settle_no")
    private String monthlySettleNo;
    public OrderPakout() {
    }
    public OrderPakout(String uuid, String orderNo, String orderTime, Long docType, Long itemId, String itemName, Long allotItemId, String defNumber, String number, Long cstmr, String cstmrName, String tel, String operMemb, Double totalFee, Double discount, Double discountFee, Double otherFee, Double actFee, Integer payType, String salesman, Integer accountDay, Integer postFeeType, Double postFee, Date payTime, Date sendTime, String shipName, String shipCode, Long settle, Integer status, Long createBy, Date createTime, Long updateBy, Date updateTime, String memo) {
    public OrderPakout(String uuid, String orderNo, String orderTime, Long docType, Long itemId, String itemName, Long allotItemId, String defNumber, String number, String cstmr, String cstmrName, String tel, String operMemb, Double totalFee, Double discount, Double discountFee, Double otherFee, Double actFee, Integer payType, String salesman, Integer accountDay, Integer postFeeType, Double postFee, Date payTime, Date sendTime, String shipName, String shipCode, Long settle, Integer status, Long createBy, Date createTime, Long updateBy, Date updateTime, String memo) {
        this.uuid = uuid;
        this.orderNo = orderNo;
        this.orderTime = orderTime;
@@ -488,7 +502,7 @@
    }
    public void sync(Object source) {
        Synchro.Copy(source, this);
        BeanUtils.copyProperties(source, this);
    }
}