ReviewSceneChangeTask.java 1.62 KB
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
package com.ruoyi.domain;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.util.Date;
import lombok.Data;

/**
 * 审查场景变更任务
 * @TableName t_review_scene_change_task
 */
@TableName(value ="t_review_scene_change_task")
@Data
public class ReviewSceneChangeTask {
    /**
     * 主键
     */
    @TableId(type = IdType.ASSIGN_ID)
    private Long id;

    /**
     * 任务编号
     */
    private String no;

    /**
     * 章节
     */
    private String chapter;

    /**
     * 审查标准
     */
    private String standard;

    /**
     * 审查要点
     */
    private String keypoint;

    /**
     * 审查细则
     */
    private String details;

    /**
     * 操作(ADD DELETE UPDATE)
     */
    private String operation;

    /**
     * 当 operation 为 ADD 时该字段为空
     */
    private String oldText;

    /**
     * 当 operation 为 DELETE 时该字段为空
     */
    private String newText;

    /**
     * 任务发起人姓名
     */
    private String taskInitiator;

    /**
     * 任务发起人岗位
     */
    private String taskInitiatorOrg;

    /**
     * 任务发起人部门
     */
    private String taskInitiatorDept;

    /**
     * 任务状态(NEW、PENDING、FINISH、CLOSE)
     */
    private String taskStatus;

    /**
     * 任务结果(PASS、REJECT)
     */
    private String taskResult;

    /**
     * 任务开始时间
     */
    private Date taskBeginTime;

    /**
     * 任务结束时间
     */
    private Date taskEndTime;

}