package com.gk.hotwork.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 javax.validation.constraints.NotBlank;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
@TableName("taskequipmentbind")
|
public class TaskEquipmentBindInfo implements Serializable {
|
/** 作业设备条码绑定表 id **/
|
@TableField(exist = false)
|
private static final long serialVersionUID = 1L;
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/** 作业编号 taskcode **/
|
@NotBlank(message = "作业编号不能为空")
|
private String taskcode;
|
|
/** 设备条码 equipmentnumber **/
|
@NotBlank(message = "设备条码不能为空")
|
private String equipmentnumber;
|
|
/** 设备名称 equipmentname **/
|
private String equipmentname;
|
|
/** 更新人 updateby **/
|
private String updateby;
|
|
/** 更新时间 updatetime **/
|
private Date updatetime;
|
|
/** 作业设备条码绑定表 id **/
|
public Long getId() {
|
return id;
|
}
|
|
/** 作业设备条码绑定表 id **/
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
/** 作业编号 taskcode **/
|
public String getTaskcode() {
|
return taskcode;
|
}
|
|
/** 作业编号 taskcode **/
|
public void setTaskcode(String taskcode) {
|
this.taskcode = taskcode == null ? null : taskcode.trim();
|
}
|
|
/** 设备条码 equipmentnumber **/
|
public String getEquipmentnumber() {
|
return equipmentnumber;
|
}
|
|
/** 设备条码 equipmentnumber **/
|
public void setEquipmentnumber(String equipmentnumber) {
|
this.equipmentnumber = equipmentnumber == null ? null : equipmentnumber.trim();
|
}
|
|
/** 设备名称 equipmentname **/
|
public String getEquipmentname() {
|
return equipmentname;
|
}
|
|
/** 设备名称 equipmentname **/
|
public void setEquipmentname(String equipmentname) {
|
this.equipmentname = equipmentname == null ? null : equipmentname.trim();
|
}
|
|
/** 更新人 updateby **/
|
public String getUpdateby() {
|
return updateby;
|
}
|
|
/** 更新人 updateby **/
|
public void setUpdateby(String updateby) {
|
this.updateby = updateby == null ? null : updateby.trim();
|
}
|
|
/** 更新时间 updatetime **/
|
public Date getUpdatetime() {
|
return updatetime;
|
}
|
|
/** 更新时间 updatetime **/
|
public void setUpdatetime(Date updatetime) {
|
this.updatetime = updatetime;
|
}
|
}
|