FrmOfficeDentity.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace com.steering.mes.mcp.entity
  6. {
  7. class FrmOfficeDentity
  8. {
  9. /// <summary>
  10. /// 人员名称
  11. /// </summary>
  12. private string name = "";
  13. public string Name
  14. {
  15. get { return name; }
  16. set { name = value; }
  17. }
  18. /// <summary>
  19. /// 班次
  20. /// </summary>
  21. private string proBc = "";
  22. public string ProBc
  23. {
  24. get { return proBc; }
  25. set { proBc = value; }
  26. }
  27. /// <summary>
  28. /// 产线
  29. /// </summary>
  30. private string plineCode = "";
  31. public string PlineCode
  32. {
  33. get { return plineCode; }
  34. set { plineCode = value; }
  35. }
  36. /// <summary>
  37. /// 人员名称
  38. /// </summary>
  39. private string remark = "";
  40. public string Remark
  41. {
  42. get { return remark; }
  43. set { remark = value; }
  44. }
  45. }
  46. }