自动化立体仓库 - WCS系统
*
lsh
5 天以前 ccd6309576bfa66ddf40b8a48202ced37c05333a
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,19 +71,19 @@
     * 添加人员
     */
    @ApiModelProperty(value= "添加人员")
    @TableField("create_by")
    @TableField("CREATE_BY")
    private Long createBy;
    /**
     * 修改人员
     */
    @ApiModelProperty(value= "修改人员")
    @TableField("update_by")
    @TableField("UPDATE_BY")
    private Long updateBy;
    public ApiConfig() {}
    public ApiConfig(String url,Integer status,String memo,Date createTime,Date updateTime,Long createBy,Long updateBy) {
    public ApiConfig(String url, Integer status, String memo, Date createTime, Date updateTime, Long createBy, Long updateBy) {
        this.url = url;
        this.status = status;
        this.memo = memo;
@@ -90,7 +93,7 @@
        this.updateBy = updateBy;
    }
//    ApiConfig apiConfig = new ApiConfig(
    //    ApiConfig apiConfig = new ApiConfig(
//            null,    // api地址
//            null,    // 状态
//            null,    // 备注