123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using Cksoft.Unity;
- using System.Text;
- namespace DllEapEntity
- {
- /// <summary>
- /// 制程信息
- /// </summary>
- [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; }
- }
- }
|