Geoffrey
2025-01-13 d0d174b591e2372ef79af3e81714db8eead52187
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
package com.zhitan.saving.domain.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.zhitan.common.annotation.Excel;
import com.zhitan.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.util.Date;
 
 
/**
 * 政策法规对象
 * @author Geoffrey
 * @date 2025/01/13
 */
@Data
@TableName(value = "policies_regulations_management")
@ApiModel(value = "PoliciesRegulationsManagement", description = "政策法规对象")
public class PoliciesRegulationsManagement extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    private Long id;
 
    /**
     * 政策标题
     */
    @Excel(name = "政策标题")
    private String title;
 
    /**
     * 政策类型
     */
    @Excel(name = "政策类型")
    private Integer type;
 
    /**
     * 印发部门
     */
    @Excel(name = "印发部门")
    private String dept;
 
    /**
     * 印发时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "印发时间", width = 30, dateFormat = "yyyy-MM-dd")
    private Date issuingTime;
 
    /**
     * 文件地址
     */
    @Excel(name = "文件地址")
    private String address;
 
    /**
     * 删除标志(0:正常;1:删除)
     */
    private Integer delFlag;
}