using System; using System.Collections.Generic; using Cksoft.Unity; using System.Text; namespace DllEapEntity { /// /// 制程信息 /// [Table(name: "TProcess")] public class ProcessInfo { [Key] [Identity] public int ID { get; set; } public string FCode { get; set; } public string FName { get; set; } public int IsChange { get; set; } = 1; 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; } } }