java110
2021-03-11 70ddca1182e89672b870b33890e7e158ef89010b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.java110.utils.constant;
 
/**
 * 巡检路线常量类
 * Created by wuxw on 2017/5/20.
 */
public class ServiceCodeInspectionRouteConstant {
 
    /**
     * 添加 巡检路线
     */
    public static final String ADD_INSPECTIONROUTE = "inspectionRoute.saveInspectionRoute";
 
 
    /**
     * 修改 巡检路线
     */
    public static final String UPDATE_INSPECTIONROUTE = "inspectionRoute.updateInspectionRoute";
    /**
     * 删除 巡检路线
     */
    public static final String DELETE_INSPECTIONROUTE = "inspectionRoute.deleteInspectionRoute";
 
 
    /**
     * 查询 巡检路线
     */
    public static final String LIST_INSPECTIONROUTES = "inspectionRoute.listInspectionRoutes";
 
    /**
     * 查询 巡检路线
     */
    public static final String LIST_INSPECTIONROUTE_POINTS = "inspectionRoute.listInspectionRoutePoints";
 
    /**
     * 添加 巡检路线
     */
    public static final String ADD_INSPECTIONROUTE_POINT = "inspectionRoute.saveInspectionRoutePoint";
 
 
    /**
     * 删除 巡检路线
     */
    public static final String DELETE_INSPECTIONROUTE_POINT = "inspectionRoute.deleteInspectionRoutePoint";
 
 
 
}