zhuguifei
2025-04-28 442928123f63ee497d766f9a7a14f0a6ee067e25
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
package org.jeecg.modules.patent.entity;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.jeecg.common.aspect.annotation.Dict;
import org.jeecg.common.system.base.entity.JeecgEntity;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.util.Date;
import java.io.Serializable;
 
/**
 * (PatentSoftbook)实体类
 *
 * @author makejava
 * @since 2022-03-30 14:00:03
 */
@Data
public class PaSoftbook extends JeecgEntity implements Serializable {
    private static final long serialVersionUID = 108917167909419339L;
    /**
     * 专利(软著)名称
     */
    private String mc;
    /**
     * 专利(软著)编号
     */
    private String bh;
    /**
     * 负责人
     */
    @Excel(name = "负责人", width = 15,dictTable = "sys_user", dicText = "realname", dicCode = "username")
    @Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username")
    private String fzr;
    /**
     * 相关成员
     */
    @Excel(name = "相关成员", width = 15,dictTable = "sys_user", dicText = "realname", dicCode = "username")
    @Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username")
    private String xgcy;
    /**
     * 类型 1-专利 2-软著
     */
    @Excel(name = "类型", width = 15,dicCode="patent_type")
    @Dict(dicCode = "patent_type")
    private Integer type;
    /**
     * 文件描述
     */
    private String ms;
    /**
     * 申请日期
     */
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date sqrq;
 
}