Нет описания

T_Sys_EquipmentNumber.cs 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. using System;
  2. namespace CallCenterApi.Model
  3. {
  4. /// <summary>
  5. /// T_Sys_EquipmentNumber:实体类(属性说明自动提取数据库字段的描述信息)
  6. /// </summary>
  7. [Serializable]
  8. public partial class T_Sys_EquipmentNumber
  9. {
  10. public T_Sys_EquipmentNumber()
  11. { }
  12. #region Model
  13. private int _f_id;
  14. private string _f_production;
  15. private string _f_factorycode;
  16. private string _f_ligaturemachinecode;
  17. private string _f_stretchfilmcode;
  18. private string _f_qcstaffcode;
  19. private DateTime? _f_creationtime;
  20. private string _f_creatuser;
  21. private long? _f_isdelete;
  22. /// <summary>
  23. ///
  24. /// </summary>
  25. public int F_ID
  26. {
  27. set { _f_id = value; }
  28. get { return _f_id; }
  29. }
  30. /// <summary>
  31. /// 生产单位
  32. /// </summary>
  33. public string F_Production
  34. {
  35. set { _f_production = value; }
  36. get { return _f_production; }
  37. }
  38. /// <summary>
  39. /// 工厂代码
  40. /// </summary>
  41. public string F_FactoryCode
  42. {
  43. set { _f_factorycode = value; }
  44. get { return _f_factorycode; }
  45. }
  46. /// <summary>
  47. /// 结扎机编号
  48. /// </summary>
  49. public string F_LigatureMachineCode
  50. {
  51. set { _f_ligaturemachinecode = value; }
  52. get { return _f_ligaturemachinecode; }
  53. }
  54. /// <summary>
  55. /// 拉伸膜包装机编号
  56. /// </summary>
  57. public string F_StretchFilmCode
  58. {
  59. set { _f_stretchfilmcode = value; }
  60. get { return _f_stretchfilmcode; }
  61. }
  62. /// <summary>
  63. /// 品管员代码
  64. /// </summary>
  65. public string F_QCStaffCode
  66. {
  67. set { _f_qcstaffcode = value; }
  68. get { return _f_qcstaffcode; }
  69. }
  70. /// <summary>
  71. /// 创建时间
  72. /// </summary>
  73. public DateTime? F_CreationTime
  74. {
  75. set { _f_creationtime = value; }
  76. get { return _f_creationtime; }
  77. }
  78. /// <summary>
  79. /// 创建人
  80. /// </summary>
  81. public string F_CreatUser
  82. {
  83. set { _f_creatuser = value; }
  84. get { return _f_creatuser; }
  85. }
  86. /// <summary>
  87. /// 是否删除
  88. /// </summary>
  89. public long? F_IsDelete
  90. {
  91. set { _f_isdelete = value; }
  92. get { return _f_isdelete; }
  93. }
  94. public string F_Manager
  95. {
  96. get;set;
  97. }
  98. #endregion Model
  99. }
  100. }