SelFundCustFundinoutExcel.cs 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. using Core.Mes.Client.Comm.Attribute;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Text;
  7. namespace Core.StlMes.Client.Sale.SaleFundMgt.Model
  8. {
  9. /// <summary>
  10. /// 数据库表SEL_FUND_CUST_FUNDINOUT所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:LAPTOP-I2IGVKJC 时间:2022-06-24
  12. /// </summary>
  13. public class SelFundCustFundinoutExcel
  14. {
  15. /// <summary>
  16. /// 进出序列
  17. /// </summary>
  18. private string busiseq = "";
  19. /// <summary>
  20. /// 结算主体
  21. /// </summary>
  22. private string balancesubject = "";
  23. /// <summary>
  24. /// 客户账户名
  25. /// </summary>
  26. private string buyercode = "";
  27. /// <summary>
  28. /// 进出金额,+为进账,-为出账
  29. /// </summary>
  30. private decimal? inoutmoney = null;
  31. /// <summary>
  32. /// 进出账时间
  33. /// </summary>
  34. private string inouttime = "";
  35. /// <summary>
  36. /// 如汇票,电汇,期票,进账单,其他
  37. /// </summary>
  38. private string fundtype = "";
  39. /// <summary>
  40. /// 用途
  41. /// </summary>
  42. private string billno = "";
  43. /// <summary>
  44. /// 是否有效,0有效,1无效
  45. /// </summary>
  46. private string isvalid = "";
  47. /// <summary>
  48. /// 备注
  49. /// </summary>
  50. private string remark = "";
  51. /// <summary>
  52. /// 录入人
  53. /// </summary>
  54. private string importor = "";
  55. /// <summary>
  56. /// 录入时间
  57. /// </summary>
  58. private string importtime = "";
  59. /// <summary>
  60. /// 进,出钱账户剩余金额
  61. /// </summary>
  62. private decimal? leavemoney = null;
  63. /// <summary>
  64. /// 确认时间
  65. /// </summary>
  66. private string affrimdate = "";
  67. /// <summary>
  68. /// 确认人
  69. /// </summary>
  70. private string affrimper = "";
  71. /// <summary>
  72. /// 业务片区
  73. /// </summary>
  74. private string secondaccount = "";
  75. /// <summary>
  76. /// 进款去向,0默认1制造2集团
  77. /// </summary>
  78. private string moneyDeliver = "";
  79. /// <summary>
  80. /// 钢贸同步给制造or集团回款时的单位
  81. /// </summary>
  82. private string prebuyercode = "";
  83. /// <summary>
  84. /// 无注释
  85. /// </summary>
  86. private string invoiceMonth = "";
  87. /// <summary>
  88. /// 无注释
  89. /// </summary>
  90. private string invoiceSts = "";
  91. /// <summary>
  92. /// 合同号
  93. /// </summary>
  94. private string orderno = "";
  95. /// <summary>
  96. /// 进出序列
  97. /// </summary>
  98. [Description("进出序列")]
  99. [Nullable(false)]
  100. [DataLength(50)]
  101. public string Busiseq
  102. {
  103. get { return busiseq; }
  104. set { busiseq = value; }
  105. }
  106. /// <summary>
  107. /// 结算主体
  108. /// </summary>
  109. [Description("结算主体")]
  110. [Nullable(true)]
  111. [DataLength(40)]
  112. public string Balancesubject
  113. {
  114. get { return balancesubject; }
  115. set { balancesubject = value; }
  116. }
  117. /// <summary>
  118. /// 客户账户名
  119. /// </summary>
  120. [Description("客户账户名")]
  121. [Nullable(true)]
  122. [DataLength(40)]
  123. public string Buyercode
  124. {
  125. get { return buyercode; }
  126. set { buyercode = value; }
  127. }
  128. /// <summary>
  129. /// 进出金额,+为进账,-为出账
  130. /// </summary>
  131. [Description("进出金额")]
  132. [Nullable(true)]
  133. [DataLength(22)]
  134. public decimal? Inoutmoney
  135. {
  136. get { return inoutmoney; }
  137. set { inoutmoney = value; }
  138. }
  139. /// <summary>
  140. /// 进出账时间
  141. /// </summary>
  142. [Description("进出账时间")]
  143. [Nullable(true)]
  144. public string Inouttime
  145. {
  146. get { return inouttime; }
  147. set { inouttime = value; }
  148. }
  149. /// <summary>
  150. /// 如汇票,电汇,期票,进账单,其他
  151. /// </summary>
  152. [Description("类型")]
  153. [Nullable(true)]
  154. [DataLength(20)]
  155. public string Fundtype
  156. {
  157. get { return fundtype; }
  158. set { fundtype = value; }
  159. }
  160. /// <summary>
  161. /// 用途
  162. /// </summary>
  163. [Description("用途")]
  164. [Nullable(true)]
  165. [DataLength(200)]
  166. public string Billno
  167. {
  168. get { return billno; }
  169. set { billno = value; }
  170. }
  171. /// <summary>
  172. /// 是否有效,0有效,1无效
  173. /// </summary>
  174. [Description("是否有效,0有效,1无效")]
  175. [Nullable(true)]
  176. [DataLength(1)]
  177. public string Isvalid
  178. {
  179. get { return isvalid; }
  180. set { isvalid = value; }
  181. }
  182. /// <summary>
  183. /// 备注
  184. /// </summary>
  185. [Description("备注")]
  186. [Nullable(true)]
  187. [DataLength(400)]
  188. public string Remark
  189. {
  190. get { return remark; }
  191. set { remark = value; }
  192. }
  193. /// <summary>
  194. /// 录入人
  195. /// </summary>
  196. [Description("录入人")]
  197. [Nullable(true)]
  198. [DataLength(40)]
  199. public string Importor
  200. {
  201. get { return importor; }
  202. set { importor = value; }
  203. }
  204. /// <summary>
  205. /// 录入时间
  206. /// </summary>
  207. [Description("录入时间")]
  208. [Nullable(true)]
  209. public string Importtime
  210. {
  211. get { return importtime; }
  212. set { importtime = value; }
  213. }
  214. /// <summary>
  215. /// 进,出钱账户剩余金额
  216. /// </summary>
  217. [Description("账户剩余金额")]
  218. [Nullable(true)]
  219. [DataLength(22)]
  220. public decimal? Leavemoney
  221. {
  222. get { return leavemoney; }
  223. set { leavemoney = value; }
  224. }
  225. /// <summary>
  226. /// 确认时间
  227. /// </summary>
  228. [Description("确认时间")]
  229. [Nullable(true)]
  230. public string Affrimdate
  231. {
  232. get { return affrimdate; }
  233. set { affrimdate = value; }
  234. }
  235. /// <summary>
  236. /// 确认人
  237. /// </summary>
  238. [Description("确认人")]
  239. [Nullable(true)]
  240. [DataLength(40)]
  241. public string Affrimper
  242. {
  243. get { return affrimper; }
  244. set { affrimper = value; }
  245. }
  246. /// <summary>
  247. /// 业务片区
  248. /// </summary>
  249. [Description("业务片区")]
  250. [Nullable(true)]
  251. [DataLength(40)]
  252. public string Secondaccount
  253. {
  254. get { return secondaccount; }
  255. set { secondaccount = value; }
  256. }
  257. /// <summary>
  258. /// 进款去向,0默认1制造2集团
  259. /// </summary>
  260. [Description("进款去向,0默认1制造2集团")]
  261. [Nullable(true)]
  262. [DataLength(1)]
  263. public string MoneyDeliver
  264. {
  265. get { return moneyDeliver; }
  266. set { moneyDeliver = value; }
  267. }
  268. /// <summary>
  269. /// 钢贸同步给制造or集团回款时的单位
  270. /// </summary>
  271. [Description("钢贸同步给制造or集团回款时的单位")]
  272. [Nullable(true)]
  273. [DataLength(40)]
  274. public string Prebuyercode
  275. {
  276. get { return prebuyercode; }
  277. set { prebuyercode = value; }
  278. }
  279. /// <summary>
  280. /// 无注释
  281. /// </summary>
  282. [Description("无注释")]
  283. [Nullable(true)]
  284. [DataLength(8)]
  285. public string InvoiceMonth
  286. {
  287. get { return invoiceMonth; }
  288. set { invoiceMonth = value; }
  289. }
  290. /// <summary>
  291. /// 无注释
  292. /// </summary>
  293. [Description("无注释")]
  294. [Nullable(true)]
  295. [DataLength(1)]
  296. public string InvoiceSts
  297. {
  298. get { return invoiceSts; }
  299. set { invoiceSts = value; }
  300. }
  301. /// <summary>
  302. /// 合同号
  303. /// </summary>
  304. [Description("合同号")]
  305. [Nullable(true)]
  306. [DataLength(200)]
  307. public string Orderno
  308. {
  309. get { return orderno; }
  310. set { orderno = value; }
  311. }
  312. }
  313. }