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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
package org.jeecg.modules.weekly.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty;
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.math.BigInteger;
import java.util.Date;
import java.io.Serializable;
 
/**
 * (WekRecord)实体类
 *
 * @author makejava
 * @since 2022-06-23 09:27:26
 */
@Data
public class WekRecord implements Serializable {
    private static final long serialVersionUID = -83223355435715039L;
    @TableId(type = IdType.INPUT)
    private String id;
    /**
     * 星期
     */
    private Integer xq;
    private String xqName;
    /**
     * 本周其他事项,type=1使用
     */
    private Integer ext;
    private String extName;
    /**
     * 子项类型 取值为type类型后+1 (如type=3,取值31)
     */
    private Integer subType;
    private String subTypeName;
    /**
     * 项目
     */
    @Excel(name = "项目名称", width = 15, dictTable = "pro_project", dicText = "xmmc", dicCode = "id")
    @Dict(dictTable = "pro_project", dicText = "xmmc", dicCode = "id")
    private String xm;
    private String xmName;
    /**
     * 项目交付物
     */
    private String xmDeliver;
    @Excel(name = "项目名称", width = 15, dictTable = "sys_user", dicText = "realname", dicCode = "username")
    @Dict(dictTable = "sys_user", dicText = "realname", dicCode = "username")
    private String user;
    /**
     * wbs
     */
    @Excel(name = "项目wbs", width = 15, dictTable = "pro_project_link", dicText = "xmhj", dicCode = "id")
    @Dict(dictTable = "pro_project_link", dicText = "xmhj", dicCode = "id")
    private String wbs;
    private String wbsName;
    /**
     * 工作描述
     */
    private String gzms;
    /**
     * 工作进度
     */
    private Integer jd;
    private String jdName;
    /**
     * 工作工时
     */
    private Double gs;
    private String gsName;
 
    /**
     * 第几周
     */
    private Integer week;
    /**
     * 年
     */
    private Integer year;
    /**
     * 开始日期
     */
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date ksrq;
    /**
     * 结束日期
     */
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date jsrq;
    /**
     * 周报类型
     */
    private Integer type;  // 0-本周工作内容  1-本周计划外工作 2-下周计划内容 3-下周需协调内容
    /**
     * 附件
     */
    private String attachFiles;
 
    /**
     * 创建人
     */
    @ApiModelProperty(value = "创建人")
    @Excel(name = "创建人", width = 15)
    private java.lang.String createBy;
    /**
     * 创建时间
     */
    @ApiModelProperty(value = "创建时间")
    @Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private java.util.Date createTime;
    /**
     * 更新人
     */
    @ApiModelProperty(value = "更新人")
    @Excel(name = "更新人", width = 15)
    private java.lang.String updateBy;
    /**
     * 更新时间
     */
    @ApiModelProperty(value = "更新时间")
    @Excel(name = "更新时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private java.util.Date updateTime;
 
    private String sysOrgCode;
 
    private Integer yearWeek; //周报属于哪年哪周的标记,作用于 区间查询
 
    @TableField(exist = false)
    private Integer detailFlag; //是否导出明细 0-否 1-是
 
 
}