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