Newer
Older
smartwell_demos / src / main / java / com / casic / model / AlarmLevel.java
chaizhuang on 24 Sep 2022 636 bytes 硫化氢新增
package com.casic.model;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;

import java.util.Date;

@Data
@TableName("alarm_level")
public class AlarmLevel{

    @TableId(value = "ID", type = IdType.ASSIGN_ID)
    private Long id;
    private String name;
    private String deviceType;
    private Integer level;
    private Float lowValue;
    private Float highValue;
    private String openAlarm;
    private String openJob;
    private Date ts;
    private String tenantId;

}