package com.boying.entity;
|
|
import lombok.Data;
|
import javax.persistence.Entity;
|
import org.hibernate.annotations.Table;
|
|
/**
|
* @author kdq
|
* @version 1.0.0
|
* @ClassName DongHuanZhuangTai.java
|
* @Description TODO
|
* @createTime 2023年06月19日 08:30:00
|
*/
|
@Data
|
public class DongHuanZhuangTai extends BaseEntity {
|
private String oid;
|
private String deviceName;
|
private String bianLiangName;
|
private String value;
|
private Integer type; //0:状态,1:报警
|
}
|