ReviewKeyPoint.java 990 Bytes
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.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
王飞's avatar
王飞 committed
7 8
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
王飞's avatar
王飞 committed
9 10 11 12 13 14 15
import lombok.Data;

import java.util.List;

/**
 * 审查要点
 */
王飞's avatar
王飞 committed
16
@ApiModel
王飞's avatar
王飞 committed
17 18 19 20 21 22 23
@TableName(value ="t_review_keypoint")
@Data
public class ReviewKeyPoint {

    /**
     * 主键
     */
王飞's avatar
王飞 committed
24
    @ApiModelProperty("主键")
王飞's avatar
王飞 committed
25 26 27 28 29 30
    @TableId(type = IdType.ASSIGN_ID)
    private Long id;

    /**
     * 文本内容
     */
王飞's avatar
王飞 committed
31
    @ApiModelProperty("文本内容")
王飞's avatar
王飞 committed
32 33 34 35 36
    private String text;

    /**
     * 审查标准id
     */
王飞's avatar
王飞 committed
37
    @ApiModelProperty("审查标准id")
王飞's avatar
王飞 committed
38 39 40 41 42
    private Long reviewStandardId;

    /**
     * 审查细则列表
     */
王飞's avatar
王飞 committed
43
    @ApiModelProperty("审查细则列表")
王飞's avatar
王飞 committed
44 45 46 47 48
    @TableField(exist = false)
    private List<ReviewDetails> reviewDetailsList;


}