k94314517
2024-06-28 7ca61e4280150ddcead8a49d58ed154f4581f8c9
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
package com.doumee.dao.business.model;
 
import com.doumee.core.annotation.excel.ExcelColumn;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.util.Date;
import java.math.BigDecimal;
 
/**
 * 月台信息表
 * @author 江蹄蹄
 * @date 2024/06/28 10:03
 */
@Data
@ApiModel("月台信息表")
@TableName("`platform`")
public class Platform {
 
    @TableId(type = IdType.AUTO)
    @ApiModelProperty(value = "主键", example = "1")
    @ExcelColumn(name="主键")
    private Integer id;
 
    @ApiModelProperty(value = "创建人编码", example = "1")
    @ExcelColumn(name="创建人编码")
    private Integer creator;
 
    @ApiModelProperty(value = "创建时间")
    @ExcelColumn(name="创建时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date createDate;
 
    @ApiModelProperty(value = "更新人编码", example = "1")
    @ExcelColumn(name="更新人编码")
    private Integer editor;
 
    @ApiModelProperty(value = "更新时间")
    @ExcelColumn(name="更新时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date editDate;
 
    @ApiModelProperty(value = "是否删除0否 1是", example = "1")
    @ExcelColumn(name="是否删除0否 1是")
    private Integer isdeleted;
 
    @ApiModelProperty(value = "名称")
    @ExcelColumn(name="名称")
    private String name;
 
    @ApiModelProperty(value = "备注")
    @ExcelColumn(name="备注")
    private String remark;
 
    @ApiModelProperty(value = "状态 0启用 1禁用", example = "1")
    @ExcelColumn(name="状态 0启用 1禁用")
    private Integer status;
 
    @ApiModelProperty(value = "排序码", example = "1")
    @ExcelColumn(name="排序码")
    private Integer sortnum;
 
    @ApiModelProperty(value = "所属月台分钟编码(g关联platform_group)", example = "1")
    @ExcelColumn(name="所属月台分钟编码(g关联platform_group)")
    private Integer groupId;
 
    @ApiModelProperty(value = "工作开始时间")
    @ExcelColumn(name="工作开始时间")
    private String startTime;
 
    @ApiModelProperty(value = "工作结束时间")
    @ExcelColumn(name="工作结束时间")
    private String endTime;
 
    @ApiModelProperty(value = "同时作业数量", example = "1")
    @ExcelColumn(name="同时作业数量")
    private Integer workingNum;
 
    @ApiModelProperty(value = "等待教好时间(秒)", example = "1")
    @ExcelColumn(name="等待教好时间(秒)")
    private Integer wariCallTime;
 
    @ApiModelProperty(value = "停留超时报警时间(秒)", example = "1")
    @ExcelColumn(name="停留超时报警时间(秒)")
    private Integer alermTime;
 
    @ApiModelProperty(value = "最后事件推送时间")
    @ExcelColumn(name="最后事件推送时间")
    @JsonFormat(pattern = "yyyy-MM-dd")
    private Date lastEventTime;
 
    @ApiModelProperty(value = "监控点名称,多个用英文逗号隔开")
    @ExcelColumn(name="监控点名称,多个用英文逗号隔开")
    private String deviceNames;
 
    @ApiModelProperty(value = "月台屏幕名称,多个用英文逗号隔开")
    @ExcelColumn(name="月台屏幕名称,多个用英文逗号隔开")
    private String screenName;
 
    @ApiModelProperty(value = "海康标识")
    @ExcelColumn(name="海康标识")
    private String hkId;
 
    @ApiModelProperty(value = "关联承租公司")
    @ExcelColumn(name="关联承租公司")
    private String companys;
 
    @ApiModelProperty(value = "X坐标", example = "1")
    @ExcelColumn(name="X坐标")
    private BigDecimal xpos;
 
    @ApiModelProperty(value = "Y坐标", example = "1")
    @ExcelColumn(name="Y坐标")
    private BigDecimal ypos;
 
    @ApiModelProperty(value = "宽度", example = "1")
    @ExcelColumn(name="宽度")
    private BigDecimal width;
 
    @ApiModelProperty(value = "高度", example = "1")
    @ExcelColumn(name="高度")
    private BigDecimal height;
 
    @ApiModelProperty(value = "角度", example = "1")
    @ExcelColumn(name="角度")
    private BigDecimal angle;
 
}