Commit cdcf17bd authored by 003's avatar 003

1.8 更新表字段

parent b8852f9e
...@@ -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)
...@@ -32,12 +32,6 @@ public class DeviceInfoPO implements Serializable { ...@@ -32,12 +32,6 @@ public class DeviceInfoPO implements Serializable {
@TableField("device_id") @TableField("device_id")
private String deviceId; private String deviceId;
/**
* 设备名称
*/
@TableField("name")
private String name;
/** /**
* 0离线,1在线 * 0离线,1在线
*/ */
...@@ -69,22 +63,10 @@ public class DeviceInfoPO implements Serializable { ...@@ -69,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;
/** /**
* 创建时间 * 创建时间
...@@ -92,6 +74,9 @@ public class DeviceInfoPO implements Serializable { ...@@ -92,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