123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- package com.usky.iot.domain;
- 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 lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.io.Serializable;
- import java.time.LocalDateTime;
- import java.util.Date;
- /**
- * <p>
- * 设备信息表
- * </p>
- *
- * @author ya
- * @since 2022-10-08
- */
- @Data
- @EqualsAndHashCode(callSuper = false)
- @TableName("dmp_device")
- public class DmpDeviceInfo implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 主键id
- */
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 设备ID;设备注册时系统自动生成一个唯一编号
- */
- private String deviceId;
- /**
- * 设备名称
- */
- private String deviceName;
- /**
- * 设备类型
- */
- private Integer deviceType;
- /**
- * 产品ID
- */
- private Integer productId;
- /**
- * 物联网卡号
- */
- private String simCode;
- /**
- * 国际移动用户识别码
- */
- private String imsiCode;
- /**
- * 是否自动订阅
- */
- private Integer subscribeFlag;
- /**
- * 节点类型
- */
- private Integer nodeType;
- /**
- * 分组id
- */
- private Integer groupId;
- /**
- * 删除标识
- */
- private Integer deleteFlag;
- /**
- * 创建人
- */
- private String createdBy;
- /**
- * 创建时间
- */
- private LocalDateTime createdTime;
- /**
- * 更新人
- */
- private String updatedBy;
- /**
- * 更新时间
- */
- private LocalDateTime updatedTime;
- /**
- * 租户号
- */
- private Integer tenantId;
- /**
- * 单位编号
- */
- private String companyCode;
- /**
- * 安装位置
- */
- private String installAddress;
- /**
- * 业务状态;1:未激活,2:已激活,3:禁用
- */
- private Integer serviceStatus;
- /**
- * 产品编码
- */
- private String productCode;
- /**
- * 设备状态;1:在线,2:离线
- */
- @TableField(exist = false)
- private Integer deviceStatus;
- }
|