| 1234567891011121314151617181920212223242526272829303132333435 |
- package com.java110.utils.constant;
- /**
- * 采购申请常量类
- * Created by wuxw on 2017/5/20.
- */
- public class ServiceCodePurchaseApplyConstant {
- /**
- * 添加 采购申请
- */
- public static final String ADD_PURCHASE_APPLY = "purchaseApply.savePurchaseApply";
- /**
- * 修改 采购申请
- */
- public static final String UPDATE_PURCHASE_APPLY = "purchaseApply.updatePurchaseApply";
- /**
- * 删除 采购申请
- */
- public static final String DELETE_PURCHASE_APPLY = "purchaseApply.deletePurchaseApply";
- /**
- * 查询 采购申请
- */
- public static final String LIST_PURCHASE_APPLY = "purchaseApply.listPurchaseApplys";
- //审核
- public static final String AUDIT_PURCHASE_APPLY = "purchaseApply.auditApplyOrder";
- }
|