mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
package com.panzhihua.service_community.model.dos;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
 
/**
 * @auther lyq
 * @create 2021-08-23 10:34:03
 * @describe 预约登记题目选项实体类
 */
 
@Data
@TableName("com_act_reserve_sub")
public class ComActReserveSubDO implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    @TableId(type = IdType.ASSIGN_ID)
    private Long id;
 
    /**
     * 预约登记id
     */
    private Long reserveId;
 
    /**
     * 序号
     */
    private Integer sort;
 
    /**
     * 类型 0 单选  1 多选 2 输入框 2姓名输入框 3 手机号 4 身份证 5 文字描述 6 日期选择
     */
    private Integer type;
 
    /**
     * 问卷调查题目key
     */
    @TableField("`key`")
    private String key;
 
    /**
     * 题目内容
     */
    private String content;
 
    /**
     * 创建人
     */
    private Long createBy;
 
    /**
     * 创建时间
     */
    private Date createAt;
 
    /**
     * 更新人
     */
    private Long updateBy;
 
    /**
     * 更新时间
     */
    private Date updateAt;
 
    @Override
    public String toString() {
        return "ComActReserveSubDO{" +
                "id=" + id +
                ", reserveId=" + reserveId +
                ", sort=" + sort +
                ", type=" + type +
                ", key=" + key +
                ", content=" + content +
                ", createBy=" + createBy +
                ", createAt=" + createAt +
                ", updateBy=" + updateBy +
                ", updateAt=" + updateAt +
                "}";
    }
}