using Cksoft.Unity; using System; using System.Collections.Generic; using System.Text; namespace DllEapEntity.Mes { /// /// 理论产量设置 /// public class IdealOutputConfig { [Key] [Identity] public int ID { get; set; } public string FCode { get; set; } public string FName { get; set; } public float FLength { get; set; } public string Remark { get; set; } public string reccode { get; set; } public DateTime? rectime { get; set; } public string modcode { get; set; } public DateTime? modtime { get; set; } [Ignore] public string RecName { get; set; } [Ignore] public string ModName { get; set; } } }