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

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
7
import java.util.Date;
王飞's avatar
王飞 committed
8

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

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

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

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

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

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

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

62 63 64
    /**
     * 审核人id
     */
W_Y's avatar
W_Y committed
65
    @JsonFormat(shape = JsonFormat.Shape.STRING)
66 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;

}