package org.jeecg.modules.tms.vo;
|
|
import java.util.List;
|
|
import org.jeecg.modules.tms.entity.TmsToolInboundDetail;
|
import lombok.Data;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
import org.jeecgframework.poi.excel.annotation.ExcelCollection;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import org.springframework.format.annotation.DateTimeFormat;
|
import java.util.Date;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
/**
|
* @Description: 工装入库
|
* @Author: jeecg-boot
|
* @Date: 2025-07-28
|
* @Version: V1.0
|
*/
|
@Data
|
@ApiModel(value="tms_tool_inboundPage对象", description="工装入库")
|
public class TmsToolInboundRequest {
|
|
/**主键*/
|
@ApiModelProperty(value = "主键")
|
private String id;
|
/**入库单状态*/
|
@Excel(name = "入库单状态", width = 15)
|
@ApiModelProperty(value = "入库单状态")
|
private String orderStatus;
|
/**入库人*/
|
@Excel(name = "入库人", width = 15)
|
@ApiModelProperty(value = "入库人")
|
private String receiver;
|
/**入库时间*/
|
@Excel(name = "入库时间", width = 15, format = "yyyy-MM-dd HH:mm")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm")
|
@ApiModelProperty(value = "入库时间")
|
private Date receiveTime;
|
/**入库说明*/
|
@Excel(name = "入库说明", width = 15)
|
@ApiModelProperty(value = "入库说明")
|
private String receiveComment;
|
/**确认人*/
|
@Excel(name = "确认人", width = 15)
|
@ApiModelProperty(value = "确认人")
|
private String confirmer;
|
/**确认时间*/
|
@Excel(name = "确认时间", width = 15, format = "yyyy-MM-dd HH:mm")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
@ApiModelProperty(value = "确认时间")
|
private Date confirmTime;
|
/**确认意见*/
|
@Excel(name = "确认意见", width = 15)
|
@ApiModelProperty(value = "确认意见")
|
private String confirmComment;
|
|
@ExcelCollection(name="工装入库明细")
|
@ApiModelProperty(value = "工装入库明细")
|
private List<TmsToolInboundDetail> tmsToolInboundDetailList;
|
|
}
|