liusheng
2024-07-26 32d4054619138c34062fb6bdcfed27caf5d0f97f
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package com.ruoyi.project.domain;
 
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * VIEW对象 v_donationworkflow
 *
 * @author ruoyi
 * @date 2024-07-26
 */
@Data
@ApiModel("VIEW")
public class VDonationworkflow extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    @ApiModelProperty("$column.columnComment")
    private Long id;
 
    /** 姓名 */
    @ApiModelProperty("姓名")
    @Excel(name = "姓名")
    private String name;
 
    /** 证件号码 */
    @ApiModelProperty("证件号码")
    @Excel(name = "证件号码")
    private String idcardno;
 
    /** 工作流 */
    @ApiModelProperty("工作流")
    @Excel(name = "工作流")
    private Long workflow;
 
    /** 终止案例:0开启   1终止   默认 0 */
    @ApiModelProperty("终止案例:0开启   1终止   默认 0")
    @Excel(name = "终止案例:0开启   1终止   默认 0")
    private Long terminationcase;
 
    /** 部门/组编号 */
    @ApiModelProperty("部门/组编号")
    @Excel(name = "部门/组编号")
    private Long deptid;
 
    /** 部门/组名称 */
    @ApiModelProperty("部门/组名称")
    @Excel(name = "部门/组名称")
    private String deptname;
 
    /** 报告者编号 */
    @ApiModelProperty("报告者编号")
    @Excel(name = "报告者编号")
    private String reporterno;
 
    /** 报告者姓名 */
    @ApiModelProperty("报告者姓名")
    @Excel(name = "报告者姓名")
    private String reportername;
 
    /** 案例时间 */
    @ApiModelProperty("案例时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "案例时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date donatetime;
 
    /** 报告时间 */
    @ApiModelProperty("报告时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "报告时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date reporttime;
 
    /** 省级评估组核心成员结论 见字典sys_CoreAssessConclusion */
    @ApiModelProperty("省级评估组核心成员结论 见字典sys_CoreAssessConclusion")
    @Excel(name = "省级评估组核心成员结论 见字典sys_CoreAssessConclusion")
    private String coreteamassessconclusion;
 
    /** 省级评估组核心成员评估时间 */
    @ApiModelProperty("省级评估组核心成员评估时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "省级评估组核心成员评估时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date coreteamassesstime;
 
    /** 签署日期 */
    @ApiModelProperty("签署日期")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "签署日期", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date signdate;
 
    /** 专家结论  见字典伦理结论 */
    @ApiModelProperty("专家结论  见字典伦理结论")
    @Excel(name = "专家结论  见字典伦理结论")
    private Long expertconclusion;
 
    /** 结论时间 */
    @ApiModelProperty("结论时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "结论时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date conclusiontime;
 
    /** $column.columnComment */
    @ApiModelProperty("$column.columnComment")
    @Excel(name = "结论时间")
    private Long organcount;
 
    /** 手术开始时间 */
    @ApiModelProperty("手术开始时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "手术开始时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date operationbegtime;
 
    /** 完成时间 */
    @ApiModelProperty("完成时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @Excel(name = "完成时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
    private Date completetime;
 
}