liusheng
2023-07-28 21bc49712f298f8c2619341279e7906dfb278944
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
package com.ruoyi.project.domain;
 
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 lombok.Data;
 
/**
 * 捐献流程对象 service_donateflowchart
 * 
 * @author ruoyi
 * @date 2021-11-15
 */
@Data
public class ServiceDonateflowchart extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** $column.columnComment */
    //数据库自增改成@TableId(type = IdType.AUTO)
    @TableId(type = IdType.AUTO)
    private Long id;
 
    /** 关联service_donatebaseinfo表的ID */
    private Long infoid;
 
    /** 捐献者编号 */
    @Excel(name = "捐献者编号")
    private String donorno;
 
    /** 流程名称 */
    @Excel(name = "流程名称")
    private String flowname;
 
    /** 流程附件 */
    private String flowannex;
 
    /** 流程内容 */
    private String flowcontent;
 
    /** 流程结论 */
    @Excel(name = "流程结论")
    private Long flowconclusion;
 
}