CeErpUpFileSupplier.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. using Castle.ActiveRecord;
  2. using NHibernate.Criterion;
  3. using System;
  4. using System.Text;
  5. namespace BizCom
  6. {
  7. [ActiveRecord("CE_ErpUpFileSupplier")]
  8. public class CeErpUpFileSupplier : ComBase<CeErpUpFileSupplier>
  9. {
  10. /// <summary>
  11. ///
  12. /// </summary>
  13. [PrimaryKey(PrimaryKeyType.Native)]
  14. public int ID { get; set; }
  15. public int _supplierId = 0;
  16. /// <summary>
  17. /// 车间id
  18. /// </summary>
  19. [Property]
  20. public int supplierId
  21. {
  22. get { return _supplierId; }
  23. set { _supplierId = value; }
  24. }
  25. public string _payment = "";
  26. /// <summary>
  27. /// 金额
  28. /// </summary>
  29. [Property]
  30. public string payment
  31. {
  32. get { return _payment; }
  33. set { _payment = value; }
  34. }
  35. public string _size = "";
  36. /// <summary>
  37. /// 尺寸
  38. /// </summary>
  39. [Property]
  40. public string size
  41. {
  42. get { return _size; }
  43. set { _size = value; }
  44. }
  45. public string _number = "";
  46. /// <summary>
  47. /// 数量
  48. /// </summary>
  49. [Property]
  50. public string number
  51. {
  52. get { return _number; }
  53. set { _number = value; }
  54. }
  55. public string _seller_memo = "";
  56. /// <summary>
  57. /// 备注
  58. /// </summary>
  59. [Property]
  60. public string seller_memo
  61. {
  62. get { return _seller_memo; }
  63. set { _seller_memo = value; }
  64. }
  65. public string _shopIds = "";
  66. /// <summary>
  67. /// 店铺
  68. /// </summary>
  69. [Property]
  70. public string shopIds
  71. {
  72. get { return _shopIds; }
  73. set { _shopIds = value; }
  74. }
  75. public string _noShopIds = "";
  76. /// <summary>
  77. /// 禁止店铺
  78. /// </summary>
  79. [Property]
  80. public string noShopIds
  81. {
  82. get { return _noShopIds; }
  83. set { _noShopIds = value; }
  84. }
  85. public string _address = "";
  86. /// <summary>
  87. /// 地区
  88. /// </summary>
  89. [Property]
  90. public string address
  91. {
  92. get { return _address; }
  93. set { _address = value; }
  94. }
  95. public string _filterText = "";
  96. /// <summary>
  97. /// 排除条件
  98. /// </summary>
  99. [Property]
  100. public string filterText
  101. {
  102. get { return _filterText; }
  103. set { _filterText = value; }
  104. }
  105. public bool _isOpen = false;
  106. /// <summary>
  107. /// 排除条件
  108. /// </summary>
  109. [Property]
  110. public bool isOpen
  111. {
  112. get { return _isOpen; }
  113. set { _isOpen = value; }
  114. }
  115. }
  116. }