ReviewDetailsResult.java 2.29 KB
Newer Older
王飞's avatar
王飞 committed
1 2 3
package com.ruoyi.domain;

import com.baomidou.mybatisplus.annotation.IdType;
wdy's avatar
wdy committed
4
import com.baomidou.mybatisplus.annotation.TableField;
王飞's avatar
王飞 committed
5 6 7
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
8
import java.util.Date;
王飞's avatar
王飞 committed
9

王飞's avatar
王飞 committed
10
import com.fasterxml.jackson.annotation.JsonFormat;
王飞's avatar
王飞 committed
11 12
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
王飞's avatar
王飞 committed
13 14 15 16 17 18
import lombok.Data;

/**
 * 审查细则的审查结果
 * @TableName t_review_details_result
 */
王飞's avatar
王飞 committed
19
@ApiModel
王飞's avatar
王飞 committed
20 21 22 23 24 25
@TableName(value ="t_review_details_result")
@Data
public class ReviewDetailsResult implements Serializable {
    /**
     * 主键
     */
王飞's avatar
王飞 committed
26
    @ApiModelProperty("主键")
王飞's avatar
王飞 committed
27
    @TableId(type = IdType.ASSIGN_ID)
王飞's avatar
王飞 committed
28
    @JsonFormat(shape = JsonFormat.Shape.STRING)
王飞's avatar
王飞 committed
29 30 31 32 33
    private Long id;

    /**
     * 审核是否通过(0未通过、1通过)
     */
王飞's avatar
王飞 committed
34
    @ApiModelProperty("审核是否通过(0未通过、1通过)")
王飞's avatar
王飞 committed
35 36 37
    private Integer passed;

    /**
王飞's avatar
王飞 committed
38
     * 评论
王飞's avatar
王飞 committed
39
     */
王飞's avatar
王飞 committed
40
    @ApiModelProperty("评论")
王飞's avatar
王飞 committed
41
    private String comment;
王飞's avatar
王飞 committed
42 43 44 45

    /**
     * 厂商适用于该细则的场景截图或照片(多个url用","分隔)
     */
王飞's avatar
王飞 committed
46
    @ApiModelProperty("厂商适用于该细则的场景截图或照片(多个url用\",\"分隔)")
王飞's avatar
王飞 committed
47
    private String imagesUrl;
王飞's avatar
王飞 committed
48 49 50 51

    /**
     * 关联到的细则id
     */
W_Y's avatar
W_Y committed
52
    @JsonFormat(shape = JsonFormat.Shape.STRING)
王飞's avatar
王飞 committed
53
    @ApiModelProperty("关联到的细则id")
王飞's avatar
王飞 committed
54 55 56 57 58
    private Long reviewDetailsId;

    /**
     * 关联的任务id
     */
W_Y's avatar
W_Y committed
59
    @JsonFormat(shape = JsonFormat.Shape.STRING)
王飞's avatar
王飞 committed
60
    @ApiModelProperty("关联的任务id")
王飞's avatar
王飞 committed
61 62
    private Long taskId;

63 64 65
    /**
     * 审核人id
     */
W_Y's avatar
W_Y committed
66
    @JsonFormat(shape = JsonFormat.Shape.STRING)
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
    @ApiModelProperty("审核人id")
    private Long userId;

    /**
     * 审核人姓名
     */
    @ApiModelProperty("审核人姓名")
    private String userName;

    /**
     * 最后修改时间
     */
    @ApiModelProperty("最后修改时间")
    private Date lastModifyTime;

wdy's avatar
wdy committed
82 83 84 85 86 87 88
    @ApiModelProperty("文件目录")
    private String catalogue;

    @JsonFormat(shape = JsonFormat.Shape.STRING)
    @ApiModelProperty("关联到车企留档文件")
    private Long reviewEnterpriseArchiveId;

89 90 91 92
    @TableField(exist = false)
    @ApiModelProperty("企业名称")
    private String enterpriseName;

wdy's avatar
wdy committed
93

94
}