自动化立体仓库 - WCS系统
*
lsh
2025-04-21 4375f7c1ccd8d6b7b3cfb4f641a3ce84b0907594
src/main/java/com/zy/asrs/entity/BasWrkIotype.java
@@ -14,7 +14,7 @@
import java.text.SimpleDateFormat;
import java.util.Date;
@TableName("asr_bas_wrk_iotype")
@TableName("\"SOURCE\".\"asr_bas_wrk_iotype\"")
public class BasWrkIotype implements Serializable {
    private static final long serialVersionUID = 1L;
@@ -23,50 +23,50 @@
     * 入出类型代号
     */
    @ApiModelProperty(value= "入出类型代号")
    @TableId(value = "io_type", type = IdType.INPUT)
    @TableField("io_type")
    @TableId(value = "IO_TYPE", type = IdType.INPUT)
    @TableField("IO_TYPE")
    private Integer ioType;
    /**
     * 主要
     */
    @ApiModelProperty(value= "主要")
    @TableField("io_pri")
    @TableField("IO_PRI")
    private String ioPri;
    /**
     * 入出类型描述
     */
    @ApiModelProperty(value= "入出类型描述")
    @TableField("io_desc")
    @TableField("IO_DESC")
    private String ioDesc;
    /**
     * 修改人员
     */
    @ApiModelProperty(value= "修改人员")
    @TableField("modi_user")
    @TableField("MODI_USER")
    private Long modiUser;
    /**
     * 修改时间
     */
    @ApiModelProperty(value= "修改时间")
    @TableField("modi_time")
    @TableField("MODI_TIME")
    private Date modiTime;
    /**
     * 创建者
     */
    @ApiModelProperty(value= "创建者")
    @TableField("appe_user")
    @TableField("APPE_USER")
    private Long appeUser;
    /**
     * 添加时间
     */
    @ApiModelProperty(value= "添加时间")
    @TableField("appe_time")
    @TableField("APPE_TIME")
    private Date appeTime;
    public BasWrkIotype() {}