package com.consum.model.vo;
|
|
import com.consum.model.po.LWhProcureModelUser;
|
import java.util.List;
|
import lombok.Data;
|
|
/**
|
* @author asus
|
* @version 1.0
|
* @description: TODO
|
* @date 2023/11/6 15:23
|
*/
|
@Data
|
public class LWhProcureModelVo {
|
|
|
// 主键
|
private Long id;
|
|
// 属性列表
|
private Long fromProcureGoodsId;
|
|
|
private Integer businessType;
|
|
|
private Long businessId;
|
|
|
private Long baseGoodsModelsId;
|
|
|
private String baseGoodsModelsName;
|
|
|
private Long price;
|
|
|
private Integer counts;
|
|
|
private Integer worehouseCount;
|
|
|
private String supplier;
|
|
/**
|
* 物品使用人信息
|
* TODO 属性重复
|
*/
|
private List<LWhProcureModelUser> procureModelUsersList;
|
|
|
}
|