package org.jeecg.modules.tms.entity.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.jeecg.modules.tms.entity.ToolsStocktakingBoundDetail;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
import org.jeecgframework.poi.excel.annotation.ExcelCollection;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* @Description: 盘点单表
|
* @Author: jeecg-boot
|
* @Date: 2025-05-16
|
* @Version: V1.0
|
*/
|
@Data
|
@ApiModel(value="tools_stocktaking_bound对象", description="盘点单表")
|
public class ToolsStocktakingVo {
|
|
/**主键*/
|
@ApiModelProperty(value = "主键")
|
private String id;
|
/**创建人*/
|
@ApiModelProperty(value = "创建人")
|
private String createBy;
|
/**创建日期*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "创建日期")
|
private Date createTime;
|
/**更新人*/
|
@ApiModelProperty(value = "更新人")
|
private String updateBy;
|
/**更新日期*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "更新日期")
|
private Date updateTime;
|
/**盘点类型*/
|
@Excel(name = "盘点类型", width = 15)
|
@ApiModelProperty(value = "盘点类型")
|
private Integer stocktakingType;
|
/**盘点单号*/
|
@Excel(name = "盘点单号", width = 15)
|
@ApiModelProperty(value = "盘点单号")
|
private String orderCode;
|
/**经手人*/
|
@Excel(name = "经手人", width = 15)
|
@ApiModelProperty(value = "经手人")
|
private String handler;
|
/**审核人*/
|
@Excel(name = "审核人", width = 15)
|
@ApiModelProperty(value = "审核人")
|
private String reviewer;
|
/**盘点名称*/
|
@Excel(name = "盘点名称", width = 15)
|
@ApiModelProperty(value = "盘点名称")
|
private String stocktakingName;
|
/**备注*/
|
@Excel(name = "备注", width = 15)
|
@ApiModelProperty(value = "备注")
|
private String remark;
|
/**审核状态*/
|
@Excel(name = "审核状态", width = 15)
|
@ApiModelProperty(value = "审核状态")
|
private String approvalStatus;
|
/**审核意见*/
|
@Excel(name = "审核意见", width = 15)
|
@ApiModelProperty(value = "审核意见")
|
private String approvalOpinion;
|
/**盘点时间*/
|
@Excel(name = "盘点时间", width = 15, format = "yyyy-MM-dd")
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
|
@DateTimeFormat(pattern="yyyy-MM-dd")
|
@ApiModelProperty(value = "盘点时间")
|
private Date inventoryTime;
|
|
@ExcelCollection(name="盘点单明细")
|
@ApiModelProperty(value = "盘点单明细")
|
private List<ToolsStocktakingBoundDetail> toolsStocktakingBoundDetailList;
|
|
}
|