linwe
2024-07-17 36fe71cc6f93197aec868fd57e39e7dc63aef367
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
package org.springblade.modules.eCallEventTwo.entity;
 
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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * 办理单对象 ec_handle
 *
 * @author ${context.author}
 * @date 2024-05-28 14:42:26
 */
@ApiModel(value = "EcHandle对象" , description = "办理单")
@Data
@TableName("ec_handle")
public class EcHandle implements Serializable
{
    private static final long serialVersionUID = 1L;
 
 
    /** 办理单ID */
    @ApiModelProperty(value = "主键ID", example = "")
    @TableId(value = "handle_id", type = IdType.AUTO)
    private Long handleId;
 
    /** 工单ID */
    @ApiModelProperty(value = "工单ID", example = "")
    @TableField("order_id")
    private Long orderId;
 
    /** 派发单ID */
    @ApiModelProperty(value = "派发单ID", example = "")
    @TableField("dispatch_id")
    private Long dispatchId;
 
    /** 办理单号 */
    @ApiModelProperty(value = "办理单号", example = "")
    @TableField("handle_code")
    private String handleCode;
 
    /** 办理单位 */
    @ApiModelProperty(value = "办理单位", example = "")
    @TableField("hdl_org_code")
    private String hdlOrgCode;
 
    /** 办理单位 */
    @ApiModelProperty(value = "办理单位", example = "")
    @TableField("hdl_org_name")
    private String hdlOrgName;
 
    /** 到达现场地点 */
    @ApiModelProperty(value = "到达现场地点", example = "")
    @TableField("arrive_loc")
    private String arriveLoc;
 
    /** 到达现场地点-经度 */
    @ApiModelProperty(value = "到达现场地点-经度", example = "")
    @TableField("arrive_loc_lat")
    private BigDecimal arriveLocLat;
 
    /** 到达现场地点-维度 */
    @ApiModelProperty(value = "到达现场地点-维度", example = "")
    @TableField("arrive_loc_lng")
    private BigDecimal arriveLocLng;
 
    /** 到达现场时间 */
    @ApiModelProperty(value = "到达现场时间", example = "")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("arrive_biz_time")
    private Date arriveBizTime;
 
    /** 远程处置时间 */
    @ApiModelProperty(value = "远程处置时间", example = "")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("remote_hdl_time")
    private Date remoteHdlTime;
 
    /** 远程处置说明 */
    @ApiModelProperty(value = "远程处置说明", example = "")
    @TableField("remote_hdl_note")
    private String remoteHdlNote;
 
    /** 远程处置附件 */
    @ApiModelProperty(value = "远程处置附件", example = "")
    @TableField("remote_hdl_images")
    private String remoteHdlImages;
 
    /** 未规范处置说明 */
    @ApiModelProperty(value = "未规范处置说明", example = "")
    @TableField("nosop_hdl_note")
    private String nosopHdlNote;
 
    /** 未规范处置附件 */
    @ApiModelProperty(value = "未规范处置附件", example = "")
    @TableField("nosop_hdl_images")
    private String nosopHdlImages;
 
    /** 截止日期 */
    @ApiModelProperty(value = "截止日期", example = "")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("limit_time")
    private Date limitTime;
 
    /** 延期后截止日期 */
    @ApiModelProperty(value = "延期后截止日期", example = "")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("delay_time")
    private Date delayTime;
 
    /** 已反馈(Y/N) */
    @ApiModelProperty(value = "已反馈(Y/N)", example = "")
    @TableField("tag_hdl_doing")
    private String tagHdlDoing;
}