ledger_revise_pos.js 628 B

123456789101112131415161718192021222324252627282930313233343536
  1. 'use strict';
  2. /**
  3. *
  4. *
  5. * @author Mai
  6. * @date
  7. * @version
  8. */
  9. module.exports = app => {
  10. class LedgerRevisePos extends app.BaseService {
  11. /**
  12. * 构造函数
  13. *
  14. * @param {Object} ctx - egg全局变量
  15. * @return {void}
  16. */
  17. constructor(ctx) {
  18. super(ctx);
  19. this.tableName = 'ledger_revise_pos';
  20. }
  21. /**
  22. * 初始化 修订的 部位明细
  23. * @param tid
  24. * @param lrid
  25. * @returns {Promise<void>}
  26. */
  27. async initRevisePos(tid, lrid) {
  28. }
  29. }
  30. return LedgerRevisePos;
  31. };