liusheng
昨天 e4e220916dd2a4aa649a9b0162e5b5ed0dc9d7e5
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
package com.ruoyi.system.domain;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
import java.util.Date;
 
/**
 * 问题上报
 *
 * @author ruoyi
 * @date 2023-05-25
 */
@Data
public class ReportReqVo extends BaseEntity {
 
    /**
     * 主键
     */
    private Long id;
 
    /**
     * 上报人
     */
    @Excel(name = "上报人")
    private Long reportPerson;
 
    /**
     * 上报人编号
     */
    @Excel(name = "上报人编号")
    private Long reportPersonCode;
 
    /**
     * 设备名称
     */
    @Excel(name = "上报问题")
    private String reqContent;
 
    /**
     * 投运日期
     */
    @JsonFormat(pattern = "yyyy-MM-dd")
    @Excel(name = "上报日期", width = 30, dateFormat = "yyyy-MM-dd")
    private Date reportDate;
 
    /**
     * 问题设备型号
     */
    @Excel(name = "问题设备型号")
    private String produce;
 
    /**
     * 上报部门
     */
    @Excel(name = "上报部门")
    private String reportDep;
 
    /**
     * 处理人姓名
     */
    @Excel(name = "处理人姓名")
    private String dealPersionName;
 
    /**
     * 处理人工号
     */
    @Excel(name = "处理人工号")
    private String dealPersionNO;
 
    /**
     * 处理人工号
     */
    @Excel(name = "处理人钉钉号")
    private String dealPersionDingNO;
 
    /**
     * 联系方式(手机号、微信号...)
     */
    @Excel(name = "联系方式")
    private String contactWsy;
 
 
    /**
     * 处理人通知方式(电话,短信,微信,钉钉...)
     */
    @Excel(name = "通知方式")
    private String noticeWay;
 
 
    /**
     * 处理部门
     */
    @Excel(name = "处理部门")
    private String dealDept;
 
    /**
     * 处理部门ID
     */
    @Excel(name = "处理部门ID")
    private String dealDeptID;
 
 
}