DeviceInfoEntity.java 1.24 KB
Newer Older
zzrdark committed
1 2
package com.mx.cneeds.server.entity;

zzrdark committed
3
import com.baomidou.mybatisplus.annotation.TableField;
zzrdark committed
4 5 6 7 8 9 10 11 12 13 14 15
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;

import java.io.Serializable;
import java.util.Date;

/**
 * 设备信息
 * 
 * @author Mark
 * @email sunlightcs@gmail.com
zzrdark committed
16
 * @date 2020-03-18 14:44:30
zzrdark committed
17 18 19 20 21 22 23 24 25 26 27
 */
@Data
@TableName("device_info")
public class DeviceInfoEntity implements Serializable {
	private static final long serialVersionUID = 1L;

	/**
	 * 设备id
	 */
	@TableId
	private Long deviceId;
zzrdark committed
28

zzrdark committed
29 30 31 32
	/**
	 * 
	 */
	private Long deptId;
zzrdark committed
33

zzrdark committed
34 35 36 37
	/**
	 * imei
	 */
	private String imei;
zzrdark committed
38

zzrdark committed
39 40 41 42
	/**
	 * iccid
	 */
	private String iccid;
zzrdark committed
43

zzrdark committed
44 45 46 47
	/**
	 * 状态0未激活,1已激活
	 */
	private String status;
zzrdark committed
48

zzrdark committed
49 50 51 52
	/**
	 * 设备版本
	 */
	private String deviceVersion;
zzrdark committed
53

zzrdark committed
54 55 56
	/**
	 * 产品系列
	 */
zzrdark committed
57
	private Long seriesId;
zzrdark committed
58

zzrdark committed
59 60 61 62
	/**
	 * 创建时间
	 */
	private Date createTime;
zzrdark committed
63

zzrdark committed
64 65 66 67
	/**
	 * 激活时间
	 */
	private Date activeTime;
zzrdark committed
68

zzrdark committed
69
	/**
zzrdark committed
70
	 * 渠道号
zzrdark committed
71
	 */
zzrdark committed
72
	private String channelNums;
zzrdark committed
73

zzrdark committed
74 75 76
	/**
	 * 渠道号提示信息
	 */
zzrdark committed
77
	private String channelNumsMessage;
zzrdark committed
78

zzrdark committed
79
	/**
zzrdark committed
80
	 * 0:白名单,1:黑名单
zzrdark committed
81
	 */
zzrdark committed
82
	private Integer channelRules;
zzrdark committed
83

zzrdark committed
84 85 86 87 88 89
	/**
	 * 产品系列号
	 */
	@TableField( exist=false )
	private String seriesNum;

zzrdark committed
90
}