using System; using System.Collections.Generic; using System.Text; namespace Model.ModelVm.SysVm { public class GetMaterialsVm:IndexPage { /// /// 物料编码 /// public string SkuNo { get; set; } /// /// 物料名称 /// public string SkuName { get; set; } /// /// 类型 /// public string Type { get; set; } /// /// 是否受控 /// public string IsControlled { get; set; } /// /// 审核状态 /// public string AuditStatusNo { get; set; } /// /// 是否免检 /// public string IsInspect { get; set; } /// /// 存储环境 /// public string Environment { get; set; } /// /// 类别编码 /// public string CategoryNo { get; set; } } }