zqy
2024-06-11 41704e538bd0402b8e8ca826404ba84f6de56fe5
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
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;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author ojq
 * @since 2023-03-14
 */
@TableName("z_idea")
@Data
public class ZIdea implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    private Long uid;
 
    @Excel(name = "时间",dateFormat = "yyyy-MM-dd")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date happenTime;
 
    /**
     * 理想标题/百年愿望
     */
    @Excel(name = "理想标题/百年愿望")
    private String title;
 
    /**
     * 始于何因
     */
    @Excel(name = "始于何因")
    private String cause;
 
    /**
     * 受惠人名字
     */
    @Excel(name = "受惠人名字")
    private String beneficiary;
 
    /**
     * 继承人名字
     */
    @Excel(name = "继承人名字")
    private String heir;
 
    /**
     * 实现难度
     */
    @Excel(name = "实现难度")
    private String difficulty;
 
    /**
     * 是否依旧有效
     */
    @Excel(name = "是否依旧有效(填是或否)",readConverterExp = "1=是,0=否")
    private Integer isEffective;
 
    /**
     * 备注
     */
    @Excel(name = "备注")
    private String remark;
 
    private String url;
 
 
    @TableField(exist = false)
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date happenStartTime;
 
    @TableField(exist = false)
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date happenEndTime;
 
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date createTime;
 
 
}