自动化立体仓库 - WMS系统
zwl
21 小时以前 3b0cab2402876426acbc0814394ff940fd2ce83d
src/main/java/com/zy/asrs/entity/WrkDetlLog.java
@@ -4,6 +4,7 @@
import com.baomidou.mybatisplus.annotations.TableName;
import com.core.common.Cools;
import com.core.common.SpringUtils;
import com.zy.common.utils.Synchro;
import com.zy.system.entity.User;
import com.zy.system.service.UserService;
import io.swagger.annotations.ApiModelProperty;
@@ -69,6 +70,48 @@
    @ApiModelProperty(value= "单据编号")
    @TableField("order_no")
    private String orderNo;
    /**
     * 集装箱号
     */
    @ApiModelProperty(value= "集装箱号")
    @TableField("container_no")
    private String containerNo;
    /**
     * teu
     */
    @ApiModelProperty(value= "teu")
    @TableField("teu")
    private Integer teu;
    /**
     * 车牌号
     */
    @ApiModelProperty(value= "车牌号")
    @TableField("plate_no")
    private String plateNo;
    /**
     * 车次号
     */
    @ApiModelProperty(value= "车次号")
    @TableField("train_no")
    private String trainNo;
    /**
     * 货物频次
     */
    @ApiModelProperty(value= "货物频次:1=高频,2=低频")
    @TableField("freq_type")
    private Integer freqType;
    /**
     * 立方数
     */
    @ApiModelProperty(value= "立方数,单位:立方米")
    @TableField("cube_number")
    private Double cubeNumber;
    /**
     * 规格
@@ -273,19 +316,40 @@
     * 备用1
     */
    @ApiModelProperty(value= "备用1")
    private Integer standby1;
    private String standby1 = "1";
    /**
     * 备用2
     */
    @ApiModelProperty(value= "备用2")
    private Integer standby2;
    private String standby2 = "1";
    /**
     * 备用3
     */
    @ApiModelProperty(value= "备用3")
    private Integer standby3;
    private String standby3 = "1";
    /**
     * 备用1
     */
    @ApiModelProperty(value= "备用1")
    @TableField("box_type1")
    private String boxType1 = "1";
    /**
     * 备用2
     */
    @ApiModelProperty(value= "备用2")
    @TableField("box_type2")
    private String boxType2 = "1";
    /**
     * 备用3
     */
    @ApiModelProperty(value= "备用3")
    @TableField("box_type3")
    private String boxType3 = "1";
    public String getIoTime$(){
        if (Cools.isEmpty(this.ioTime)){
@@ -376,5 +440,7 @@
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.appeTime);
    }
    public void sync(Object source) {
        Synchro.Copy(source, this);
    }
}