锐腾搅拌上料功能
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1004 B

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Frame.Data.Entity
  6. {
  7. public class FormICSSEGUIModel:ICSSEG
  8. {
  9. public string ID { get; set; }
  10. //车间代码
  11. public string SEGCODE { get; set; }
  12. //车间次序
  13. public int SEGSEQ { get; set; }
  14. //车间描述
  15. public string SEGDESC { get; set; }
  16. //班制ID
  17. public string SHIFTTYPEID { get; set; }
  18. //工厂ID
  19. public string SEGManager { get; set; }
  20. //车间主任
  21. public string FACID { get; set; }
  22. public string MUSER { get; set; }
  23. public string MUSERName { get; set; }
  24. public DateTime? MTIME { get; set; }
  25. public string WorkPoint { get; set; }
  26. public string EATTRIBUTE1 { get; set; }
  27. //班制
  28. public FormICSShifTypeUIModel shifType { get; set; }
  29. //工厂
  30. public FormICSFactoryUIModel fac { get; set; }
  31. }
  32. }