All Downloads are FREE. Search and download functionalities are using the official Maven repository.

k.e.book.ddh.entity.CcAttachmentAddDTO Maven / Gradle / Ivy


package k.e.book.ddh.entity;

import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import javax.validation.constraints.NotNull;
import java.io.Serializable;
import java.util.Date;
/**
 * @author kk
 * @date 2023-05-21 14:25
 */
@Data
@ApiModel(value="CcAttachmentAddDTO", description="CcAttachment")
public class CcAttachmentAddDTO implements Serializable{

    @ApiModelProperty(value = "ID")
    private Integer id;

    @ApiModelProperty(value = "类别")
    private String category;

    @ApiModelProperty(value = "管理员ID")
    private Integer adminId;

    @ApiModelProperty(value = "会员ID")
    private Integer userId;

    @ApiModelProperty(value = "物理路径")
    private String url;

    @ApiModelProperty(value = "宽度")
    private String imagewidth;

    @ApiModelProperty(value = "高度")
    private String imageheight;

    @ApiModelProperty(value = "图片类型")
    private String imagetype;

    @ApiModelProperty(value = "图片帧数")
    private Integer imageframes;

    @ApiModelProperty(value = "文件名称")
    private String filename;

    @ApiModelProperty(value = "文件大小")
    private Integer filesize;

    @ApiModelProperty(value = "mime类型")
    private String mimetype;

    @ApiModelProperty(value = "透传数据")
    private String extparam;

    @ApiModelProperty(value = "创建日期")
    private Long createtime;

    @ApiModelProperty(value = "更新时间")
    private Long updatetime;

    @ApiModelProperty(value = "上传时间")
    private Long uploadtime;

    @ApiModelProperty(value = "存储位置")
    private String storage;

    @ApiModelProperty(value = "文件 sha1编码")
    private String sha1;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy