TWarehousebillsfees.java 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898
  1. package com.ruoyi.warehouseBusiness.domain;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.ruoyi.common.annotation.Excel;
  5. import com.ruoyi.common.core.domain.BaseEntity;
  6. import java.math.BigDecimal;
  7. import java.util.Date;
  8. import java.util.List;
  9. /**
  10. * 仓库费用明细对象 t_warehousebillsfees
  11. *
  12. * @author ruoyi
  13. * @date 2020-12-11
  14. */
  15. public class TWarehousebillsfees extends BaseEntity {
  16. private static final long serialVersionUID = 1L;
  17. /**
  18. * $column.columnComment
  19. */
  20. private Long fId;
  21. /**
  22. * 对应主表id
  23. */
  24. @Excel(name = "对应主表id")
  25. private Long fPid;
  26. /**
  27. * 行号
  28. */
  29. @Excel(name = "行号")
  30. private Long fLineno;
  31. /**
  32. * 仓库id
  33. */
  34. @Excel(name = "仓库id")
  35. private Long fWarehouseid;
  36. /**
  37. * 客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name
  38. */
  39. @Excel(name = "客户名称,t_corps 中的no或 name,模糊查找选择后,存储id,显示name")
  40. private Long fCorpid;
  41. /**
  42. * 发货方
  43. */
  44. @Excel(name = "发货方")
  45. private String fShipper;
  46. public String getfShipper() {
  47. return fShipper;
  48. }
  49. public void setfShipper(String fShipper) {
  50. this.fShipper = fShipper;
  51. }
  52. /**
  53. * 费用名称,存储id 显示名称,t_fees 中的no或 name,模糊查找选择后,存储f_id,显示name
  54. */
  55. @Excel(name = "费用名称,存储id 显示名称,t_fees 中的no或 name,模糊查找选择后,存储f_id,显示name")
  56. private Long fFeeid;
  57. /**
  58. * 计价单位(数据字典),对应,t_unitfees f_id,如果选择为毛重,数量(f_qty)取主表的毛重,如果选择净重,取主表的净重,如果为箱量,取主表的箱量
  59. */
  60. @Excel(name = "计价单位(数据字典),对应,t_unitfees f_id,如果选择为毛重,数量", readConverterExp = "f=_qty")
  61. private Long fFeeunitid;
  62. /**
  63. * 数量
  64. */
  65. @Excel(name = "数量")
  66. private BigDecimal fQty;
  67. /**
  68. * 单价
  69. */
  70. @Excel(name = "单价")
  71. private BigDecimal fUnitprice;
  72. /**
  73. * 金额,2位小数f_qty* f_amount
  74. */
  75. @Excel(name = "金额,2位小数f_qty* f_amount")
  76. private BigDecimal fAmount;
  77. /**
  78. * 币别
  79. */
  80. @Excel(name = "币别")
  81. private String fCurrency;
  82. /**
  83. * 汇率
  84. */
  85. @Excel(name = "汇率")
  86. private BigDecimal fExrate;
  87. /**
  88. * 税率,显示是 3 6 16 用13%
  89. */
  90. @Excel(name = "税率,显示是 3 6 16 用13%")
  91. private BigDecimal fTaxrate;
  92. /**
  93. * 收、付,D:收 C 付
  94. */
  95. @Excel(name = "收、付,D:收 C 付")
  96. private String fDc;
  97. /**
  98. * 状态,N 录入,F审核中,T审核通过,只有录入状态的数据可以修改
  99. */
  100. @Excel(name = "状态,N 录入,F审核中,T审核通过,只有录入状态的数据可以修改")
  101. private Long fBillstatus;
  102. /**
  103. * 审核日期
  104. */
  105. @JsonFormat(pattern = "yyyy-MM-dd")
  106. @Excel(name = "审核日期", width = 30, dateFormat = "yyyy-MM-dd")
  107. private Date fReviewDate;
  108. /**
  109. * 对账金额
  110. */
  111. @Excel(name = "对账金额")
  112. private BigDecimal fAccamount;
  113. /**
  114. * 对账单号
  115. */
  116. @Excel(name = "对账单号")
  117. private String fStatementNo;
  118. /**
  119. * 对账状态:1.已对账,2.未对账
  120. */
  121. private int feesStatus;
  122. public int getFeesStatus() {
  123. return feesStatus;
  124. }
  125. public void setFeesStatus(int feesStatus) {
  126. this.feesStatus = feesStatus;
  127. }
  128. /**
  129. * 结算金额
  130. */
  131. @Excel(name = "结算金额")
  132. private BigDecimal fStlamount;
  133. /**
  134. * 发票号
  135. */
  136. @Excel(name = "发票号")
  137. private String fInvnos;
  138. /**
  139. * 发票状态:1.已开票,2.未开票
  140. */
  141. private int fInvnosStatus;
  142. public int getfInvnosStatus() {
  143. return fInvnosStatus;
  144. }
  145. public void setfInvnosStatus(int fInvnosStatus) {
  146. this.fInvnosStatus = fInvnosStatus;
  147. }
  148. /**
  149. * 对账日期
  150. */
  151. @JsonFormat(pattern = "yyyy-MM-dd")
  152. @Excel(name = "对账日期", width = 30, dateFormat = "yyyy-MM-dd")
  153. private Date fAccamountDate;
  154. /**
  155. * 开票金额
  156. */
  157. @Excel(name = "开票金额")
  158. private BigDecimal fInvamount;
  159. /**
  160. * 结算单号
  161. */
  162. @Excel(name = "结算单号")
  163. private String fStlamountNo;
  164. /**
  165. * 结算状态:1.已结算,2.未结算
  166. */
  167. private int fStalmountStatus;
  168. public int getfStalmountStatus() {
  169. return fStalmountStatus;
  170. }
  171. public void setfStalmountStatus(int fStalmountStatus) {
  172. this.fStalmountStatus = fStalmountStatus;
  173. }
  174. /**
  175. * 申请金额
  176. */
  177. @Excel(name = "申请金额")
  178. private BigDecimal fAskamount;
  179. /**
  180. * 状态
  181. */
  182. @Excel(name = "状态")
  183. private String fStatus;
  184. /**
  185. * 结算日期
  186. */
  187. @JsonFormat(pattern = "yyyy-MM-dd")
  188. @Excel(name = "结算日期", width = 30, dateFormat = "yyyy-MM-dd")
  189. private Date fStlamountDate;
  190. /**
  191. * 删除状态
  192. */
  193. private String delFlag;
  194. /**
  195. * 来源id
  196. */
  197. @Excel(name = "来源id")
  198. private Long srcId;
  199. /**
  200. * 来源编号
  201. */
  202. @Excel(name = "来源编号")
  203. private String srcBillNo;
  204. /**
  205. * 提单号
  206. */
  207. @Excel(name = "提单号")
  208. private String fMblno;
  209. /**
  210. * 明细品名合计
  211. */
  212. @Excel(name = "明细品名合计")
  213. private String fProductName;
  214. /**
  215. * 唛头合计
  216. */
  217. @Excel(name = "唛头合计")
  218. private String fMarks;
  219. /**
  220. * 仓储计费日期
  221. */
  222. @JsonFormat(pattern = "yyyy-MM-dd")
  223. @Excel(name = "仓储计费日期", width = 30, dateFormat = "yyyy-MM-dd")
  224. private Date fChargedate;
  225. /**
  226. * 仓储费计费截至日期
  227. */
  228. @JsonFormat(pattern = "yyyy-MM-dd")
  229. @Excel(name = "仓储费计费截至日期", width = 30, dateFormat = "yyyy-MM-dd")
  230. private Date fBillingDeadline;
  231. /**
  232. * 库存天数(出库日期-仓储费计费日期)
  233. */
  234. @Excel(name = "库存天数(出库日期-仓储费计费日期)")
  235. private Long fInventoryDays;
  236. /**
  237. * 金额
  238. */
  239. @Excel(name = "金额")
  240. private BigDecimal fAmt;
  241. /**
  242. * 计费天数
  243. */
  244. @Excel(name = "计费天数")
  245. private Long fBillingDays;
  246. /**
  247. * 计费数量
  248. */
  249. @Excel(name = "计费数量")
  250. private BigDecimal fBillingQty;
  251. /**
  252. * 单据类型(数据字典)SJRK(入库) SJCK(实际出库) CKDB(调拨) HQZY(货权转移)
  253. */
  254. @Excel(name = "单据类型(数据字典)SJRK", readConverterExp = "入=库")
  255. private String fBilltype;
  256. /**
  257. * 入(出)库日期
  258. */
  259. @Excel(name = "入", readConverterExp = "出=")
  260. private Date fBsdate;
  261. /**
  262. * 入库日期(原始)
  263. */
  264. @Excel(name = "入库日期", readConverterExp = "原=始")
  265. private Date fOriginalbilldate;
  266. /**
  267. * 计费方式
  268. */
  269. @Excel(name = "计费方式")
  270. private Long fBillingway;
  271. /**
  272. * 结算方式,默认提取corps中stltypeid 也可以从表t_stltypes中下拉选择,存储id,显示name
  273. */
  274. @Excel(name = "结算方式,默认提取corps中stltypeid 也可以从表t_stltypes中下拉选择,存储id,显示name")
  275. private Long fStltypeid;
  276. /**
  277. * 业务类型(存汉字的,用来区别 如: 来车提货,出库装箱 区别)
  278. */
  279. @Excel(name = "业务类型(存汉字的,用来区别 如: 来车提货,出库装箱 区别)")
  280. private String fBusinessType;
  281. /**
  282. * 费用信息备注
  283. */
  284. @Excel(name = "费用信息备注")
  285. private String priceDateRemarks;
  286. /**
  287. * 查询费用报表时间区间
  288. */
  289. private List<String> fBsdateList;
  290. public List<String> getfBsdateList() {
  291. return fBsdateList;
  292. }
  293. public void setfBsdateList(List<String> fBsdateList) {
  294. this.fBsdateList = fBsdateList;
  295. }
  296. /**
  297. * 查询审核日期时间区间
  298. */
  299. private List<String> fReviewDateList;
  300. public List<String> getfReviewDateList() {
  301. return fReviewDateList;
  302. }
  303. public void setfReviewDateList(List<String> fReviewDateList) {
  304. this.fReviewDateList = fReviewDateList;
  305. }
  306. /**
  307. * 费用列表
  308. */
  309. private List<Long> fFeeids;
  310. public List<Long> getfFeeids() {
  311. return fFeeids;
  312. }
  313. public void setfFeeids(List<Long> fFeeids) {
  314. this.fFeeids = fFeeids;
  315. }
  316. /**
  317. * 是否可修改 0 手动录入
  318. */
  319. private Long fSrcTypeId;
  320. //客户中文名
  321. private String corpName;
  322. //费用中文名
  323. private String feeName;
  324. //状态中文
  325. private String fBillstatusName;
  326. // 仓库名称
  327. @TableField(exist = false)
  328. private String warehouseName;
  329. public String getWarehouseName() {
  330. return warehouseName;
  331. }
  332. public String getPriceDateRemarks() {
  333. return priceDateRemarks;
  334. }
  335. public void setPriceDateRemarks(String priceDateRemarks) {
  336. this.priceDateRemarks = priceDateRemarks;
  337. }
  338. public void setWarehouseName(String warehouseName) {
  339. this.warehouseName = warehouseName;
  340. }
  341. public String getfBillstatusName() {
  342. return fBillstatusName;
  343. }
  344. public void setfBillstatusName(String fBillstatusName) {
  345. this.fBillstatusName = fBillstatusName;
  346. }
  347. /**
  348. * 年份
  349. */
  350. private String fYears;
  351. /**
  352. * 月份
  353. */
  354. private List<String> fMonth;
  355. /**
  356. * 传递前台搜索审核日期范围,用来做 excel 表的统计范围
  357. */
  358. private String dateRange;
  359. public String getDateRange() {
  360. return dateRange;
  361. }
  362. public void setDateRange(String dateRange) {
  363. this.dateRange = dateRange;
  364. }
  365. public String getfYears() {
  366. return fYears;
  367. }
  368. public void setfYears(String fYears) {
  369. this.fYears = fYears;
  370. }
  371. public List<String> getfMonth() {
  372. return fMonth;
  373. }
  374. public void setfMonth(List<String> fMonth) {
  375. this.fMonth = fMonth;
  376. }
  377. public String getCorpName() {
  378. return corpName;
  379. }
  380. public void setCorpName(String corpName) {
  381. this.corpName = corpName;
  382. }
  383. public String getFeeName() {
  384. return feeName;
  385. }
  386. public void setFeeName(String feeName) {
  387. this.feeName = feeName;
  388. }
  389. public Long getfSrcTypeId() {
  390. return fSrcTypeId;
  391. }
  392. public void setfSrcTypeId(Long fSrcTypeId) {
  393. this.fSrcTypeId = fSrcTypeId;
  394. }
  395. public void setfId(Long fId) {
  396. this.fId = fId;
  397. }
  398. public Long getfId() {
  399. return fId;
  400. }
  401. public void setfBsdate(Date fBsdate) {
  402. this.fBsdate = fBsdate;
  403. }
  404. public Date getfBsdate() {
  405. return fBsdate;
  406. }
  407. public void setfOriginalbilldate(Date fOriginalbilldate) {
  408. this.fOriginalbilldate = fOriginalbilldate;
  409. }
  410. public Date getfOriginalbilldate() {
  411. return fOriginalbilldate;
  412. }
  413. public void setfPid(Long fPid) {
  414. this.fPid = fPid;
  415. }
  416. public Long getfPid() {
  417. return fPid;
  418. }
  419. public void setfLineno(Long fLineno) {
  420. this.fLineno = fLineno;
  421. }
  422. public Long getfLineno() {
  423. return fLineno;
  424. }
  425. public void setfCorpid(Long fCorpid) {
  426. this.fCorpid = fCorpid;
  427. }
  428. public Long getfCorpid() {
  429. return fCorpid;
  430. }
  431. public void setfFeeid(Long fFeeid) {
  432. this.fFeeid = fFeeid;
  433. }
  434. public Long getfFeeid() {
  435. return fFeeid;
  436. }
  437. public void setfFeeunitid(Long fFeeunitid) {
  438. this.fFeeunitid = fFeeunitid;
  439. }
  440. public Long getfFeeunitid() {
  441. return fFeeunitid;
  442. }
  443. public void setfQty(BigDecimal fQty) {
  444. this.fQty = fQty;
  445. }
  446. public BigDecimal getfQty() {
  447. return fQty;
  448. }
  449. public void setfUnitprice(BigDecimal fUnitprice) {
  450. this.fUnitprice = fUnitprice;
  451. }
  452. public BigDecimal getfUnitprice() {
  453. return fUnitprice;
  454. }
  455. public void setfAmount(BigDecimal fAmount) {
  456. this.fAmount = fAmount;
  457. }
  458. public BigDecimal getfAmount() {
  459. return fAmount;
  460. }
  461. public void setfCurrency(String fCurrency) {
  462. this.fCurrency = fCurrency;
  463. }
  464. public String getfCurrency() {
  465. return fCurrency;
  466. }
  467. public void setfExrate(BigDecimal fExrate) {
  468. this.fExrate = fExrate;
  469. }
  470. public BigDecimal getfExrate() {
  471. return fExrate;
  472. }
  473. public void setfTaxrate(BigDecimal fTaxrate) {
  474. this.fTaxrate = fTaxrate;
  475. }
  476. public BigDecimal getfTaxrate() {
  477. return fTaxrate;
  478. }
  479. public void setfDc(String fDc) {
  480. this.fDc = fDc;
  481. }
  482. public String getfDc() {
  483. return fDc;
  484. }
  485. public void setfBillstatus(Long fBillstatus) {
  486. this.fBillstatus = fBillstatus;
  487. }
  488. public Long getfBillstatus() {
  489. return fBillstatus;
  490. }
  491. public void setfReviewDate(Date fReviewDate) {
  492. this.fReviewDate = fReviewDate;
  493. }
  494. public Date getfReviewDate() {
  495. return fReviewDate;
  496. }
  497. public void setfAccamount(BigDecimal fAccamount) {
  498. this.fAccamount = fAccamount;
  499. }
  500. public BigDecimal getfAccamount() {
  501. return fAccamount;
  502. }
  503. public void setfStatementNo(String fStatementNo) {
  504. this.fStatementNo = fStatementNo;
  505. }
  506. public String getfStatementNo() {
  507. return fStatementNo;
  508. }
  509. public void setfStlamount(BigDecimal fStlamount) {
  510. this.fStlamount = fStlamount;
  511. }
  512. public BigDecimal getfStlamount() {
  513. return fStlamount;
  514. }
  515. public void setfInvnos(String fInvnos) {
  516. this.fInvnos = fInvnos;
  517. }
  518. public String getfInvnos() {
  519. return fInvnos;
  520. }
  521. public void setfAccamountDate(Date fAccamountDate) {
  522. this.fAccamountDate = fAccamountDate;
  523. }
  524. public Date getfAccamountDate() {
  525. return fAccamountDate;
  526. }
  527. public void setfInvamount(BigDecimal fInvamount) {
  528. this.fInvamount = fInvamount;
  529. }
  530. public BigDecimal getfInvamount() {
  531. return fInvamount;
  532. }
  533. public void setfStlamountNo(String fStlamountNo) {
  534. this.fStlamountNo = fStlamountNo;
  535. }
  536. public String getfStlamountNo() {
  537. return fStlamountNo;
  538. }
  539. public void setfAskamount(BigDecimal fAskamount) {
  540. this.fAskamount = fAskamount;
  541. }
  542. public BigDecimal getfAskamount() {
  543. return fAskamount;
  544. }
  545. public void setfStatus(String fStatus) {
  546. this.fStatus = fStatus;
  547. }
  548. public String getfStatus() {
  549. return fStatus;
  550. }
  551. public void setfStlamountDate(Date fStlamountDate) {
  552. this.fStlamountDate = fStlamountDate;
  553. }
  554. public Date getfStlamountDate() {
  555. return fStlamountDate;
  556. }
  557. public void setDelFlag(String delFlag) {
  558. this.delFlag = delFlag;
  559. }
  560. public String getDelFlag() {
  561. return delFlag;
  562. }
  563. public void setSrcId(Long srcId) {
  564. this.srcId = srcId;
  565. }
  566. public Long getSrcId() {
  567. return srcId;
  568. }
  569. public void setSrcBillNo(String srcBillNo) {
  570. this.srcBillNo = srcBillNo;
  571. }
  572. public String getSrcBillNo() {
  573. return srcBillNo;
  574. }
  575. public void setfMblno(String fMblno) {
  576. this.fMblno = fMblno;
  577. }
  578. public String getfMblno() {
  579. return fMblno;
  580. }
  581. public void setfProductName(String fProductName) {
  582. this.fProductName = fProductName;
  583. }
  584. public String getfProductName() {
  585. return fProductName;
  586. }
  587. public void setfMarks(String fMarks) {
  588. this.fMarks = fMarks;
  589. }
  590. public String getfMarks() {
  591. return fMarks;
  592. }
  593. public void setfChargedate(Date fChargedate) {
  594. this.fChargedate = fChargedate;
  595. }
  596. public Date getfChargedate() {
  597. return fChargedate;
  598. }
  599. public void setfBillingDeadline(Date fBillingDeadline) {
  600. this.fBillingDeadline = fBillingDeadline;
  601. }
  602. public Date getfBillingDeadline() {
  603. return fBillingDeadline;
  604. }
  605. public void setfInventoryDays(Long fInventoryDays) {
  606. this.fInventoryDays = fInventoryDays;
  607. }
  608. public Long getfInventoryDays() {
  609. return fInventoryDays;
  610. }
  611. public void setfAmt(BigDecimal fAmt) {
  612. this.fAmt = fAmt;
  613. }
  614. public BigDecimal getfAmt() {
  615. return fAmt;
  616. }
  617. public void setfBillingDays(Long fBillingDays) {
  618. this.fBillingDays = fBillingDays;
  619. }
  620. public Long getfBillingDays() {
  621. return fBillingDays;
  622. }
  623. public void setfBillingQty(BigDecimal fBillingQty) {
  624. this.fBillingQty = fBillingQty;
  625. }
  626. public BigDecimal getfBillingQty() {
  627. return fBillingQty;
  628. }
  629. public void setfBilltype(String fBilltype) {
  630. this.fBilltype = fBilltype;
  631. }
  632. public String getfBilltype() {
  633. return fBilltype;
  634. }
  635. public void setfBillingway(Long fBillingway) {
  636. this.fBillingway = fBillingway;
  637. }
  638. public Long getfBillingway() {
  639. return fBillingway;
  640. }
  641. public Long getfStltypeid() {
  642. return fStltypeid;
  643. }
  644. public void setfStltypeid(Long fStltypeid) {
  645. this.fStltypeid = fStltypeid;
  646. }
  647. public String getfBusinessType() {
  648. return fBusinessType;
  649. }
  650. public void setfBusinessType(String fBusinessType) {
  651. this.fBusinessType = fBusinessType;
  652. }
  653. public Long getfWarehouseid() {
  654. return fWarehouseid;
  655. }
  656. public void setfWarehouseid(Long fWarehouseid) {
  657. this.fWarehouseid = fWarehouseid;
  658. }
  659. @Override
  660. public String toString() {
  661. return "TWarehousebillsfees{" +
  662. "fId=" + fId +
  663. ", fPid=" + fPid +
  664. ", fLineno=" + fLineno +
  665. ", fWarehouseid=" + fWarehouseid +
  666. ", fCorpid=" + fCorpid +
  667. ", fFeeid=" + fFeeid +
  668. ", fFeeunitid=" + fFeeunitid +
  669. ", fQty=" + fQty +
  670. ", fUnitprice=" + fUnitprice +
  671. ", fAmount=" + fAmount +
  672. ", fCurrency='" + fCurrency + '\'' +
  673. ", fExrate=" + fExrate +
  674. ", fTaxrate=" + fTaxrate +
  675. ", fDc='" + fDc + '\'' +
  676. ", fBillstatus=" + fBillstatus +
  677. ", fReviewDate=" + fReviewDate +
  678. ", fAccamount=" + fAccamount +
  679. ", fStatementNo='" + fStatementNo + '\'' +
  680. ", fStlamount=" + fStlamount +
  681. ", fInvnos='" + fInvnos + '\'' +
  682. ", fAccamountDate=" + fAccamountDate +
  683. ", fInvamount=" + fInvamount +
  684. ", fStlamountNo='" + fStlamountNo + '\'' +
  685. ", fAskamount=" + fAskamount +
  686. ", fStatus='" + fStatus + '\'' +
  687. ", fStlamountDate=" + fStlamountDate +
  688. ", delFlag='" + delFlag + '\'' +
  689. ", srcId=" + srcId +
  690. ", srcBillNo='" + srcBillNo + '\'' +
  691. ", fMblno='" + fMblno + '\'' +
  692. ", fProductName='" + fProductName + '\'' +
  693. ", fMarks='" + fMarks + '\'' +
  694. ", fChargedate=" + fChargedate +
  695. ", fBillingDeadline=" + fBillingDeadline +
  696. ", fInventoryDays=" + fInventoryDays +
  697. ", fAmt=" + fAmt +
  698. ", fBillingDays=" + fBillingDays +
  699. ", fBillingQty=" + fBillingQty +
  700. ", fBilltype='" + fBilltype + '\'' +
  701. ", fBsdate=" + fBsdate +
  702. ", fOriginalbilldate=" + fOriginalbilldate +
  703. ", fBillingway=" + fBillingway +
  704. ", fStltypeid=" + fStltypeid +
  705. ", fBusinessType='" + fBusinessType + '\'' +
  706. ", fBsdateList=" + fBsdateList +
  707. ", fReviewDateList=" + fReviewDateList +
  708. ", fSrcTypeId=" + fSrcTypeId +
  709. ", corpName='" + corpName + '\'' +
  710. ", feeName='" + feeName + '\'' +
  711. ", fBillstatusName='" + fBillstatusName + '\'' +
  712. ", fYears='" + fYears + '\'' +
  713. ", fMonth=" + fMonth +
  714. '}';
  715. }
  716. }