wl
2022-10-21 201ea73fb531ee30fd57465e210bd523eb10c95d
ycl-platform/src/main/java/com/ycl/entity/common/ImageResources.java
@@ -14,7 +14,7 @@
/**
 * <p>
 * 类说明
 * 图片资源
 * </p>
 *
 * @author mg
@@ -31,31 +31,37 @@
     * id
     */
    @TableId(value = "id", type = IdType.AUTO)
    @ApiModelProperty(value = "id",dataType = "Integer")
    private Integer id;
    @ApiModelProperty(value = "id")
    private Long id;
    /**
     * 所属Id
     */
    @TableField("belong_to_id")
    @ApiModelProperty(value = "所属Id")
    private Long belongToId;
    /**
     * 图片类型
     */
    @TableField("type")
    @ApiModelProperty(value = "图片类型",dataType = "String")
    @ApiModelProperty(value = "图片类型")
    private String type;
    /**
     * 路径
     */
    @TableField("url")
    @ApiModelProperty(value = "路径",dataType = "String")
    @ApiModelProperty(value = "路径")
    private String url;
    /**
     * 创建人
     */
    @TableField("create_user")
    @ApiModelProperty(value = "创建人",dataType = "Integer")
    @ApiModelProperty(value = "创建人")
    private Integer createUser;
    /**
     * 创建时间
     */
    @TableField("create_time")
    @ApiModelProperty(value = "创建时间",dataType = "Date")
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
}