project_consts.js 453 B

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