project_consts.js 582 B

12345678910111213141516171819202122232425
  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. };
  18. var commonConst = {
  19. UT_UPDATE: 'ut_update',
  20. UT_CREATE: 'ut_create',
  21. UT_DELETE: 'ut_delete'
  22. };
  23. module.exports = {projectConst: projectConst, commonConst: commonConst};