package com.consum.base.pojo.response;
|
|
import java.util.List;
|
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
/**
|
* @author asus
|
* @version 1.0
|
* @description: 调拨单列表信息
|
* @date 2023/11/15 17:27
|
*/
|
@Data
|
@ApiModel(value = "调拨单列表信息")
|
public class FormTransferVO {
|
|
// 主键
|
private Long id;
|
|
// 属性列表
|
private Long inWarehouseFormId;
|
|
private Long inWarehouseFlowId;
|
|
private Long outWarehouseFlowId;
|
|
private Long outWarehouseFormId;
|
|
private Integer businessType;
|
|
private String businessFormCode;
|
|
private Integer inWarehouseType;
|
|
private Long inWarehouseId;
|
|
private String inWarehouseName;
|
|
private Integer outWarehouseType;
|
|
private Long outWarehouseId;
|
|
private String outWarehouseName;
|
|
private Long inAgencyId;
|
|
private String inAgencyName;
|
|
private Long outAgencyId;
|
|
private String outAgencyName;
|
|
private Long operatorId;
|
|
private String operatorName;
|
|
private Long createTime;
|
|
private Integer states;
|
|
private Long inOperatorId;
|
|
private String inOperatorName;
|
|
private Long inTime;
|
|
private Long outOperatorId;
|
|
private String outOperatorName;
|
|
private Long outputTime;
|
|
private String procureDoc;
|
|
private Long tel;
|
|
/**
|
* 规格型号
|
*/
|
List<GoodsTemplateCountVO> fromTransferTemplateInfoList;
|
|
}
|