Commit dbd17570 authored by quxiaofei's avatar quxiaofei

Merge branch 'dev' into 'master'

Dev See merge request !2
parents bd3c536c cdcf17bd
...@@ -16,7 +16,7 @@ import lombok.experimental.Accessors; ...@@ -16,7 +16,7 @@ import lombok.experimental.Accessors;
* </p> * </p>
* *
* @author baomidou * @author baomidou
* @since 2019-03-27 * @since 2019-05-29
*/ */
@Data @Data
@EqualsAndHashCode(callSuper = false) @EqualsAndHashCode(callSuper = false)
...@@ -29,21 +29,9 @@ public class DeviceInfoPO implements Serializable { ...@@ -29,21 +29,9 @@ public class DeviceInfoPO implements Serializable {
@TableId(value = "id", type = IdType.AUTO) @TableId(value = "id", type = IdType.AUTO)
private Integer id; private Integer id;
/**
* 设备编号(出厂编号)
*/
@TableField("product_code")
private String productCode;
@TableField("device_id") @TableField("device_id")
private String deviceId; private String deviceId;
/**
* 设备名称
*/
@TableField("name")
private String name;
/** /**
* 0离线,1在线 * 0离线,1在线
*/ */
...@@ -75,22 +63,10 @@ public class DeviceInfoPO implements Serializable { ...@@ -75,22 +63,10 @@ public class DeviceInfoPO implements Serializable {
private Integer isUsed; private Integer isUsed;
/** /**
* 机械框架代码 * 是否正在使用:0未锁定;1锁定
*/
@TableField("frame_code")
private String frameCode;
/**
* 设备描述
*/ */
@TableField("descreption") @TableField("locked")
private String descreption; private Integer locked;
/**
* 设备调试完成开始运营时间
*/
@TableField("business_time")
private LocalDateTime businessTime;
/** /**
* 创建时间 * 创建时间
...@@ -98,6 +74,9 @@ public class DeviceInfoPO implements Serializable { ...@@ -98,6 +74,9 @@ public class DeviceInfoPO implements Serializable {
@TableField("create_time") @TableField("create_time")
private LocalDateTime createTime; private LocalDateTime createTime;
/**
* 更新时间
*/
@TableField("update_time") @TableField("update_time")
private LocalDateTime updateTime; private LocalDateTime updateTime;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment