project_consts.js 667 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * Created by jimiz on 2017/4/18.
  3. */
  4. var 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. CALC_PROGRAM:'calc_program'
  20. };
  21. var commonConst = {
  22. UT_UPDATE: 'ut_update',
  23. UT_CREATE: 'ut_create',
  24. UT_DELETE: 'ut_delete'
  25. };
  26. module.exports = {projectConst: projectConst, commonConst: commonConst};