package com.ycl.entity.caseHandler; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.Version; import com.baomidou.mybatisplus.annotation.TableId; import java.time.LocalDateTime; import com.baomidou.mybatisplus.annotation.TableField; import java.io.Serializable; import lombok.Data; import lombok.EqualsAndHashCode; /** *

* *

* * @author zhanghua * @since 2022-10-21 */ @Data @EqualsAndHashCode(callSuper = false) @TableName("ums_image_resources") public class ImageResources implements Serializable { private static final long serialVersionUID = 1L; /** * 主键Id */ @TableId(value = "id", type = IdType.AUTO) private Integer id; /** * 所属Id */ @TableField("belong_to_id") private Integer belongToId; /** * 图片资源类型 01-上报 02-处置 */ @TableField("type") private String type; /** * 图片路径 */ @TableField("url") private String url; /** * 创建人 */ @TableField("create_user") private Integer createUser; /** * 创建时间 */ @TableField("create_time") private LocalDateTime createTime; }