|
|
@@ -0,0 +1,31 @@
|
|
|
+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";
|
|
|
+
|
|
|
+
|
|
|
+}
|