project_consts.js 511 B

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