package com.javaweb.geo.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.javaweb.common.annotation.Excel;
|
import com.javaweb.common.core.domain.BaseEntity;
|
import java.util.Date;
|
|
/**
|
* 设备出入库记录对象 js_device_log
|
*
|
* @author cxy
|
* @date 2024-05-16
|
*/
|
public class DeviceLog extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键 */
|
private Integer id;
|
|
/** 出入库单子号 */
|
@Excel(name = "出入库单子号")
|
private String code;
|
|
/** 项目id */
|
private String projectId;
|
|
/** 项目名称 */
|
@Excel(name = "项目名称")
|
private String projectName;
|
|
/** 设备id */
|
private String deviceId;
|
|
/** 设备编码 */
|
private String deviceCode;
|
|
/** 设备名称 */
|
@Excel(name = "设备名称")
|
private String deviceName;
|
|
/** 类型(设备,材料) */
|
@Excel(name = "出入库类型", readConverterExp = "类型(设备,材料)")
|
private String type;
|
|
/** 出库时间 */
|
@Excel(name = "出库时间")
|
private String outboundDate;
|
|
/** 入库时间 */
|
@Excel(name = "入库时间")
|
private String inboundDate;
|
|
/** 经办人 */
|
@Excel(name = "经办人")
|
private String optUser;
|
|
/** 使用人 */
|
@Excel(name = "负责人")
|
private String applyUser;
|
|
/** 出入库数量 */
|
@Excel(name = "出入库数量")
|
private String number;
|
|
/** 时间 */
|
private Date createDate;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public void setCode(String code)
|
{
|
this.code = code;
|
}
|
|
public String getCode()
|
{
|
return code;
|
}
|
public void setProjectId(String projectId)
|
{
|
this.projectId = projectId;
|
}
|
|
public String getProjectId()
|
{
|
return projectId;
|
}
|
public void setProjectName(String projectName)
|
{
|
this.projectName = projectName;
|
}
|
|
public String getProjectName()
|
{
|
return projectName;
|
}
|
public void setDeviceId(String deviceId)
|
{
|
this.deviceId = deviceId;
|
}
|
|
public String getDeviceId()
|
{
|
return deviceId;
|
}
|
public void setDeviceName(String deviceName)
|
{
|
this.deviceName = deviceName;
|
}
|
|
public String getDeviceCode() {
|
return deviceCode;
|
}
|
|
public void setDeviceCode(String deviceCode) {
|
this.deviceCode = deviceCode;
|
}
|
|
public String getDeviceName()
|
{
|
return deviceName;
|
}
|
public void setType(String type)
|
{
|
this.type = type;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public String getOutboundDate() {
|
return outboundDate;
|
}
|
|
public void setOutboundDate(String outboundDate) {
|
this.outboundDate = outboundDate;
|
}
|
|
public String getInboundDate() {
|
return inboundDate;
|
}
|
|
public void setInboundDate(String inboundDate) {
|
this.inboundDate = inboundDate;
|
}
|
|
public void setOptUser(String optUser) {
|
this.optUser = optUser;
|
}
|
|
public String getOptUser()
|
{
|
return optUser;
|
}
|
public void setApplyUser(String applyUser)
|
{
|
this.applyUser = applyUser;
|
}
|
|
public String getApplyUser()
|
{
|
return applyUser;
|
}
|
public void setNumber(String number)
|
{
|
this.number = number;
|
}
|
|
public String getNumber()
|
{
|
return number;
|
}
|
public void setCreateDate(Date createDate)
|
{
|
this.createDate = createDate;
|
}
|
|
public Date getCreateDate()
|
{
|
return createDate;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("code", getCode())
|
.append("projectId", getProjectId())
|
.append("projectName", getProjectName())
|
.append("deviceId", getDeviceId())
|
.append("deviceCode", getDeviceCode())
|
.append("deviceName", getDeviceName())
|
.append("optUser", getOptUser())
|
.append("applyUser", getApplyUser())
|
.append("number", getNumber())
|
.append("createDate", getCreateDate())
|
.append("remark", getRemark())
|
.toString();
|
}
|
}
|