project_consts.js 482 B

1234567891011121314151617181920212223
  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. PROJECTGLJ: 'projectGLJ',
  11. GLJLIST: 'GLJList',
  12. UNITPRICEFILE: 'unitPriceFile',
  13. PROPERTIES: 'properties'
  14. };
  15. var commonConst = {
  16. UT_UPDATE: 'ut_update',
  17. UT_CREATE: 'ut_create',
  18. UT_DELETE: 'ut_delete'
  19. };
  20. module.exports = {projectConst: projectConst, commonConst: commonConst};