| | |
| | | package com.consum.base.pojo.response; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | |
| | | import java.util.List; |
| | | import lombok.Data; |
| | | |
| | |
| | | * @description: 出库列表信息 |
| | | * @date 2023/11/10 11:37 |
| | | */ |
| | | @ApiModel(value = "出库列表信息") |
| | | // @ApiModel(value = "出库列表信息") |
| | | @Data |
| | | public class FormOutputVO { |
| | | |
| | | // 主键 |
| | | private Long id; |
| | | |
| | | |
| | | // 属性列表 |
| | | // 单号 |
| | | private String businessFormCode; |
| | | |
| | | |
| | | // 仓库id |
| | | private Long warehouseId; |
| | | |
| | | |
| | | // 仓库名称 |
| | | private String warehouseName; |
| | | |
| | | // 操作人id |
| | | private Long operatorId; |
| | | |
| | | private Long buyerId; |
| | | // 操作人名称 |
| | | private String operatorName; |
| | | |
| | | // 处理时间 |
| | | private Long dealTime; |
| | | |
| | | private String buyerName; |
| | | |
| | | |
| | | private Long procureTime; |
| | | |
| | | |
| | | private String procureDoc; |
| | | |
| | | |
| | | private Integer buyType; |
| | | |
| | | |
| | | private Integer states; |
| | | |
| | | |
| | | // 机构id |
| | | private Long agencyId; |
| | | |
| | | |
| | | // 机构名称 |
| | | private String agencyName; |
| | | |
| | | |
| | | private Long incomeId; |
| | | |
| | | |
| | | private String incomeName; |
| | | |
| | | |
| | | private Long incomeTime; |
| | | |
| | | |
| | | private String beiz; |
| | | |
| | | |
| | | private Long lWarehouseFlowId; |
| | | |
| | | private List<FormOutputTemplateInfoVO> formOutputTemplateInfoList; |
| | | private List<GoodsTemplateCountVO> formOutputTemplateInfoList; |
| | | |
| | | |
| | | } |