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";
|
|
|
}
|