IdealOutputConfig.cs 777 B

123456789101112131415161718192021222324252627282930
  1. using Cksoft.Unity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace DllEapEntity.Mes
  6. {
  7. /// <summary>
  8. /// 理论产量设置
  9. /// </summary>
  10. public class IdealOutputConfig
  11. {
  12. [Key]
  13. [Identity]
  14. public int ID { get; set; }
  15. public string FCode { get; set; }
  16. public string FName { get; set; }
  17. public float FLength { get; set; }
  18. public string Remark { get; set; }
  19. public string reccode { get; set; }
  20. public DateTime? rectime { get; set; }
  21. public string modcode { get; set; }
  22. public DateTime? modtime { get; set; }
  23. [Ignore]
  24. public string RecName { get; set; }
  25. [Ignore]
  26. public string ModName { get; set; }
  27. }
  28. }