project_consts.js 938 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /**
  2. * Created by jimiz on 2017/4/18.
  3. */
  4. let projectConst = {
  5. BILLS: 'bills',
  6. RATION: 'ration',
  7. GLJ: 'GLJ',
  8. RATION_GLJ:'ration_glj',
  9. RATION_COE:'ration_coe',
  10. RATION_ASS:'ration_ass',
  11. QUANTITY_DETAIL:'quantity_detail',
  12. PROJECTGLJ: 'projectGLJ',
  13. GLJLIST: 'GLJList',
  14. UNITPRICEFILE: 'unitPriceFile',
  15. PROPERTIES: 'properties',
  16. VOLUMEPRICE: 'volume_price',
  17. FEERATE:'feeRate',
  18. LABOUR_COE:'labour_coe'
  19. };
  20. let projectConstList = [
  21. 'bills',
  22. 'ration',
  23. 'GLJ',
  24. 'ration_glj',
  25. 'ration_coe',
  26. 'ration_ass',
  27. 'quantity_detail',
  28. 'projectGLJ',
  29. 'GLJList',
  30. 'unitPriceFile',
  31. 'properties',
  32. 'volume_price',
  33. 'feeRate',
  34. 'labour_coe'
  35. ];
  36. let commonConst = {
  37. UT_UPDATE: 'ut_update',
  38. UT_CREATE: 'ut_create',
  39. UT_DELETE: 'ut_delete'
  40. };
  41. module.exports = {projectConst: projectConst, commonConst: commonConst, projectConstList: projectConstList};