自动化立体仓库 - WCS系统
*
lsh
2025-04-02 dd9438d16375800e5b5d53c2d654b7fb4b2f2dd4
src/main/java/com/zy/asrs/entity/ApiConfig.java
@@ -27,32 +27,35 @@
    private static final long serialVersionUID = 1L;
    @ApiModelProperty(value= "")
    @TableId(value = "id", type = IdType.AUTO)
    @TableId(value = "\"id\"", type = IdType.AUTO)
    private Long id;
    /**
     * api地址
     */
    @ApiModelProperty(value= "api地址")
    @TableField("\"url\"")
    private String url;
    /**
     * 状态 0: 正常  1: 禁用  
     */
    @ApiModelProperty(value= "状态 0: 正常  1: 禁用  ")
    @TableField("\"status\"")
    private Integer status;
    /**
     * 备注
     */
    @ApiModelProperty(value= "备注")
    @TableField("\"memo\"")
    private String memo;
    /**
     * 创建时间
     */
    @ApiModelProperty(value= "创建时间")
    @TableField("create_time")
    @TableField("\"create_time\"")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date createTime;
@@ -60,7 +63,7 @@
     * 更新时间
     */
    @ApiModelProperty(value= "更新时间")
    @TableField("update_time")
    @TableField("\"update_time\"")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    private Date updateTime;
@@ -68,14 +71,14 @@
     * 添加人员
     */
    @ApiModelProperty(value= "添加人员")
    @TableField("create_by")
    @TableField("\"create_by\"")
    private Long createBy;
    /**
     * 修改人员
     */
    @ApiModelProperty(value= "修改人员")
    @TableField("update_by")
    @TableField("\"update_by\"")
    private Long updateBy;
    public ApiConfig() {}