using System; using System.ComponentModel.DataAnnotations; namespace Win_in.Sfs.Wms.DataExchange.Application.Contracts.Iac.Mes.Mes; /// /// 新增和更新基础DTO /// public class MesProductL7PartsNoteCreateOrUpdateInputBase : SfsDataExchangeCreateOrUpdateInputBase { /// /// 自增长ID /// public int RowID { get; set; } ///// ///// 接口类型 ///// //[Display(Name = "接口类型")] //public string InfoType { get; set; } /// /// 年份 /// [Display(Name = "年份")] public string Year { get; set; } /// /// 产品号 /// [Display(Name = "产品号")] public string ProductNo { get; set; } /// /// 项目号 /// [Display(Name = "项目号")] public string Program { get; set; } /// /// 位置 /// [Display(Name = "位置")] public string Position { get; set; } /// /// FATA /// [Display(Name = "FATA")] public string FATA { get; set; } /// /// 配置号 /// [Display(Name = "配置号")] public string Configuration { get; set; } /// /// L7物品 /// [Display(Name = "L7物品")] public string L7Part { get; set; } /// /// 数量 /// [Display(Name = "数量")] public int Qty { get; set; } /// /// 状态 /// //[Display(Name = "状态")] public int State { get; set; } /// /// 创建时间 /// //[Display(Name = "创建时间")] public DateTime CreateDate { get; set; } }