Commit 91ab667e authored by 赵啸非's avatar 赵啸非

Merge remote-tracking branch 'origin/master'

parents 7f239349 33099fc8
package com.mortals.xhx.common.pdu.device;
import com.mortals.framework.model.BaseEntityLong;
import java.util.Date;
import java.util.List;
......@@ -12,9 +10,15 @@ import java.util.List;
* @date 2022-10-26
*/
public class DevicePdu extends BaseEntityLong {
public class DevicePdu {
private static final long serialVersionUID = 1L;
private Integer size;
private Long id;
private Long createUserId;
private Date createTime;
private Long updateUserId;
private Date updateTime;
/**
* 设备名称
*/
......@@ -2617,6 +2621,55 @@ public class DevicePdu extends BaseEntityLong {
public void setDeviceSNList(List<String> deviceSNList){
this.deviceSNList = deviceSNList;
}
public Integer getSize() {
return size;
}
public void setSize(Integer size) {
this.size = size;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getCreateUserId() {
return createUserId;
}
public void setCreateUserId(Long createUserId) {
this.createUserId = createUserId;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Long getUpdateUserId() {
return updateUserId;
}
public void setUpdateUserId(Long updateUserId) {
this.updateUserId = updateUserId;
}
public Date getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
/**
* 设置 主键ID,主键,自增长
* @param id
......
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