ProcessInfo.cs 673 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using Cksoft.Unity;
  4. using System.Text;
  5. namespace DllEapEntity
  6. {
  7. /// <summary>
  8. /// 制程信息
  9. /// </summary>
  10. [Table(name: "TProcess")]
  11. public class ProcessInfo
  12. {
  13. [Key]
  14. [Identity]
  15. public int ID { get; set; }
  16. public string FCode { get; set; }
  17. public string FName { get; set; }
  18. public int IsChange { get; set; } = 1;
  19. public string Remark { get; set; }
  20. public string reccode { get; set; }
  21. public DateTime? rectime { get; set; }
  22. public string modcode { get; set; }
  23. public DateTime? modtime { get; set; }
  24. }
  25. }