111
fei.wang
2025-04-18 a6686570ac48648e2bf2ec93d27272a4473cac08
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
package com.hxzkappboot.pojo;
 
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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("tb_warnmes")
@ApiModel(value="TbWarnmes对象", description="")
public class TbWarnmes {
 
    private static final long serialVersionUID=1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "围栏类型")
    @TableField("type")
    private String type;
 
    @ApiModelProperty(value = "告警语音")
    @TableField("warnmes")
    private String warnmes;
 
 
    @ApiModelProperty(value = "预警语音")
    @TableField("nowarnmes")
    private String nowarnmes;
 
    @ApiModelProperty(value = "告警语音类型")
    @TableField("warnmestype")
    private String warnmestype;
 
    @ApiModelProperty(value = "预警语音类型")
    @TableField("nowarnmestype")
    private String nowarnmestype;
 
 
 
    @ApiModelProperty(value = "添加时间")
    @TableField("addtime")
    private String addtime;
 
 
}