ReviewEnterpriseArchive.java 1.92 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
package com.ruoyi.domain;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;

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

/**
 * 车企留档文件
 * @TableName t_review_enterprise_archive
 */
@TableName(value ="t_review_enterprise_archive")
@Data
public class ReviewEnterpriseArchive implements Serializable {

    @ApiModelProperty("主键")
    @TableId(type = IdType.ASSIGN_ID)
    @JsonFormat(shape = JsonFormat.Shape.STRING)
    private Long id;

    /**
     * 企业名称
     */
wdy's avatar
wdy committed
30
    @ApiModelProperty("企业名称")
31
    private String enterpriseName;
32 33 34 35

    /**
     * 文件名称
     */
wdy's avatar
wdy committed
36
    @ApiModelProperty("文件名称")
37 38 39 40 41
    private String fileName;

    /**
     * 文件版本
     */
wdy's avatar
wdy committed
42
    @ApiModelProperty("文件版本")
43 44 45 46 47
    private String version;

    /**
     * 发布日期
     */
wdy's avatar
wdy committed
48
    @ApiModelProperty("发布日期")
wdy's avatar
wdy committed
49
    @JsonFormat(pattern = "yyyy-MM-dd")
50 51 52 53 54
    private Date publishDate;

    /**
     * 文件状态
     */
wdy's avatar
wdy committed
55
    @ApiModelProperty("文件状态")
56 57 58 59 60
    private String status;

    /**
     * 文件识别号
     */
wdy's avatar
wdy committed
61
    @ApiModelProperty("文件识别号")
62 63 64 65 66
    private String identifyNumber;

    /**
     * 存储位置
     */
wdy's avatar
wdy committed
67
    @ApiModelProperty("存储位置")
68 69 70 71 72
    private String storage;

    /**
     * 图片地址
     */
wdy's avatar
wdy committed
73
    @ApiModelProperty("图片地址")
74 75 76 77 78
    private String photo;

    /**
     * 关联到任务id
     */
wdy's avatar
wdy committed
79 80
    @ApiModelProperty("关联到任务id")
    @JsonFormat(shape = JsonFormat.Shape.STRING)
81 82
    private Long taskId;

wdy's avatar
wdy committed
83 84 85 86
    @ApiModelProperty("创建人")
    private String createBy;

    @ApiModelProperty("创建时间")
wdy's avatar
wdy committed
87
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm")
wdy's avatar
wdy committed
88 89
    private Date createTime;

90
}