package org.jeecg.modules.cms.vo;
|
|
import org.jeecg.modules.cms.entity.CuttingInboundDetail;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
import org.jeecgframework.poi.excel.annotation.ExcelCollection;
|
import java.util.List;
|
|
public class CuttingInboundExportVo {
|
/** 主键 */
|
@Excel(name = "入库单", width = 15)
|
private String id;
|
|
/** 入库人 */
|
@Excel(name = "入库人", width = 15,dictTable = "sys_user",dicCode = "id",dicText = "realname")
|
private String receiver;
|
|
/** 入库时间 */
|
@Excel(name = "入库时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
private java.util.Date receiveTime;
|
|
/** 入库说明 */
|
@Excel(name = "入库说明", width = 15)
|
private String receiveComment;
|
|
/** 确认人 */
|
@Excel(name = "确认人", width = 15,dictTable = "sys_user",dicCode = "id",dicText = "realname")
|
private String confirmer;
|
|
/** 确认时间 */
|
@Excel(name = "确认时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
private java.util.Date confirmTime;
|
|
/** 确认意见 */
|
@Excel(name = "确认意见", width = 15)
|
private String confirmComment;
|
|
/** 订单状态 */
|
@Excel(name = "订单状态", width = 15)
|
private String orderStatus;
|
|
// 明细集合
|
@ExcelCollection(name = "入库明细")
|
private List<CuttingInboundDetail> detailList;
|
|
// getter和setter方法...
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getReceiver() {
|
return receiver;
|
}
|
|
public void setReceiver(String receiver) {
|
this.receiver = receiver;
|
}
|
|
public java.util.Date getReceiveTime() {
|
return receiveTime;
|
}
|
|
public void setReceiveTime(java.util.Date receiveTime) {
|
this.receiveTime = receiveTime;
|
}
|
|
public String getReceiveComment() {
|
return receiveComment;
|
}
|
|
public void setReceiveComment(String receiveComment) {
|
this.receiveComment = receiveComment;
|
}
|
|
public String getConfirmer() {
|
return confirmer;
|
}
|
|
public void setConfirmer(String confirmer) {
|
this.confirmer = confirmer;
|
}
|
|
public java.util.Date getConfirmTime() {
|
return confirmTime;
|
}
|
|
public void setConfirmTime(java.util.Date confirmTime) {
|
this.confirmTime = confirmTime;
|
}
|
|
public String getConfirmComment() {
|
return confirmComment;
|
}
|
|
public void setConfirmComment(String confirmComment) {
|
this.confirmComment = confirmComment;
|
}
|
|
public String getOrderStatus() {
|
return orderStatus;
|
}
|
|
public void setOrderStatus(String orderStatus) {
|
this.orderStatus = orderStatus;
|
}
|
|
public List<CuttingInboundDetail> getDetailList() {
|
return detailList;
|
}
|
|
public void setDetailList(List<CuttingInboundDetail> detailList) {
|
this.detailList = detailList;
|
}
|
}
|