自动化立体仓库 - WCS系统
*
lsh
2025-04-24 bb87914b329dbaf4e93850fe9c26c075708f13ef
src/main/java/com/zy/asrs/entity/BasCrnError.java
@@ -23,42 +23,42 @@
     * 异常代号
     */
    @ApiModelProperty(value= "异常代号")
    @TableId(value = "\"errorCode\"", type = IdType.AUTO)
    @TableId(value = "ERROR_CODE", type = IdType.AUTO)
    private Long errorCode;
    /**
     * 异常描述
     */
    @ApiModelProperty(value= "异常描述")
    @TableField("\"err_name\"")
    @TableField("ERR_NAME")
    private String errName;
    /**
     * 修改人员
     */
    @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 BasCrnError() {}