ServiceCodeInspectionRouteConstant.java 1.1 KB

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