ReviewDetailsResult.java 944 Bytes
Newer Older
王飞's avatar
王飞 committed
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
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;
import lombok.Data;

/**
 * 审查细则的审查结果
 * @TableName t_review_details_result
 */
@TableName(value ="t_review_details_result")
@Data
public class ReviewDetailsResult implements Serializable {
    /**
     * 主键
     */
    @TableId(type = IdType.ASSIGN_ID)
    private Long id;

    /**
     * 审核是否通过(0未通过、1通过)
     */
    private Integer passed;

    /**
王飞's avatar
王飞 committed
28
     * 评论
王飞's avatar
王飞 committed
29
     */
王飞's avatar
王飞 committed
30
    private String comment;
王飞's avatar
王飞 committed
31 32 33 34

    /**
     * 厂商适用于该细则的场景截图或照片(多个url用","分隔)
     */
王飞's avatar
王飞 committed
35
    private String imagesUrl;
王飞's avatar
王飞 committed
36 37 38 39 40 41 42 43 44 45 46 47

    /**
     * 关联到的细则id
     */
    private Long reviewDetailsId;

    /**
     * 关联的任务id
     */
    private Long taskId;

}