package com.consum.base.pojo.response;
|
|
import java.util.List;
|
|
|
import lombok.Data;
|
|
/**
|
* @author asus
|
* @version 1.0
|
* @description: 采购列表明细信息
|
* @date 2023/11/10 11:37
|
*/
|
// @ApiModel(value = "采购列表明细信息")
|
@Data
|
public class FormProcureVO {
|
|
// 主键
|
private Long id;
|
|
// 属性列表
|
private String businessFormCode;
|
|
private Long warehouseId;
|
|
private String warehouseName;
|
|
private Long buyerId;
|
|
private String buyerName;
|
|
private Long procureTime;
|
|
private String procureDoc;
|
|
private Integer buyType;
|
|
private Integer states;
|
|
private Long agencyId;
|
|
private String agencyName;
|
|
private Long incomeId;
|
|
private String incomeName;
|
|
private Long incomeTime;
|
|
private String beiz;
|
|
private Long lWarehouseFlowId;
|
|
private List<GoodsTemplateCountVO> fromProcureTemplateInfoList;
|
|
}
|