using System; using System.Collections.Generic; using System.Text; namespace Model.ModelVm.BllAsnVm { public class ProcurePlanNoticeVm : IndexPage { /// /// 主键ID /// public int? Id { get; set; } /// /// Desc:BllProcurePlanNotice(采购计划单总表)主键 /// Default: /// Nullable:False /// public int ParentId { get; set; } /// /// Desc:状态 /// Default:0 /// Nullable:True /// public string Status { get; set; } /// /// Desc:客户编号 /// Default: /// Nullable:True /// public string CustomerNo { get; set; } /// /// Desc:客户名称 /// Default: /// Nullable:True /// public string CustomerName { get; set; } /// /// 完成时间 /// public DateTime? CompleteTime { get; set; } /// /// 物料编码 /// public string SkuNo { get; set; } /// /// 物料名称 /// public string SkuName { get; set; } /// /// 开始日期 /// public string StartTime { get; set; } /// /// 结束日期 /// public string EndTime { get; set; } public int? CreateUser { get; set; } } }