王飞
2025-01-23 8b878300a3b44426d20b72ad4aea0291571a76ce
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
package com.hxzkmonitor.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author wangfei
 * @since 2024-08-22
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("tb_voicetip")
@ApiModel(value="TbVoicetip对象", description="")
public class TbVoicetip implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
      @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = "告警类型")
    @TableField("warningtype")
    private String warningtype;
 
    @ApiModelProperty(value = "提示文字")
    @TableField("remindertext")
    private String remindertext;
 
    @ApiModelProperty(value = "操作人")
    @TableField("username")
    private String username;
 
    @ApiModelProperty(value = "添加日期")
    @TableField("addtime")
    private String addtime;
 
 
}