package com.consum.base.pojo;
|
|
import com.walker.web.param.ParamRequest;
|
import java.util.List;
|
import lombok.Data;
|
|
/**
|
* @ClassName LWhFormProcureGoodsParams
|
* @Date 2023/10/27
|
* @Description
|
* @Version 1.0
|
**/
|
@Data
|
public class LWhFormProcureGoodsInfoParam extends ParamRequest {
|
|
//分类编号
|
private Long baseCategoryId = null;
|
//物品模版编号
|
private Long baseGoodsTemplateId = null;
|
//供应商
|
private String supplier = null;
|
|
private List<LWhProcureModelParam> models;
|
|
// 主键
|
private Long id = null;
|
|
// 属性列表
|
private Long whFormProcureId = null;
|
|
private String goodsTemplateName;
|
|
private Integer sort = null;
|
|
/**
|
* 分类id
|
*/
|
private Long categoryId;
|
}
|