12345678910111213141516171819202122232425 |
- /**
- * Created by jimiz on 2017/4/18.
- */
- var projectConst = {
- BILLS: 'bills',
- RATION: 'ration',
- GLJ: 'GLJ',
- RATION_GLJ:'ration_glj',
- RATION_COE:'ration_coe',
- RATION_ASS:'ration_ass',
- QUANTITY_DETAIL:'quantity_detail',
- PROJECTGLJ: 'projectGLJ',
- GLJLIST: 'GLJList',
- UNITPRICEFILE: 'unitPriceFile',
- PROPERTIES: 'properties',
- VOLUMEPRICE: 'volume_price'
- };
- var commonConst = {
- UT_UPDATE: 'ut_update',
- UT_CREATE: 'ut_create',
- UT_DELETE: 'ut_delete'
- };
- module.exports = {projectConst: projectConst, commonConst: commonConst};
|