|
|
@@ -0,0 +1,31 @@
|
|
|
+package com.java110.utils.constant;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 巡检计划常量类
|
|
|
+ * Created by wuxw on 2017/5/20.
|
|
|
+ */
|
|
|
+public class ServiceCodeInspectionPlanConstant {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 添加 巡检计划
|
|
|
+ */
|
|
|
+ public static final String ADD_INSPECTIONPLAN = "inspectionPlan.saveInspectionPlan";
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改 巡检计划
|
|
|
+ */
|
|
|
+ public static final String UPDATE_INSPECTIONPLAN = "inspectionPlan.updateInspectionPlan";
|
|
|
+ /**
|
|
|
+ * 删除 巡检计划
|
|
|
+ */
|
|
|
+ public static final String DELETE_INSPECTIONPLAN = "inspectionPlan.deleteInspectionPlan";
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询 巡检计划
|
|
|
+ */
|
|
|
+ public static final String LIST_INSPECTIONPLANS = "inspectionPlan.listInspectionPlans";
|
|
|
+
|
|
|
+
|
|
|
+}
|