Blame view

java110-utils/src/main/java/com/java110/utils/constant/ServiceCodeOrgConstant.java 1.16 KB
88e030b7   王彪总   init project
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
49
50
51
52
53
54
55
56
57
58
59
60
61
  package com.java110.utils.constant;
  
  /**
   * 组织管理常量类
   * Created by wuxw on 2017/5/20.
   */
  public class ServiceCodeOrgConstant {
  
      /**
       * 添加 组织管理
       */
      public static final String ADD_ORG = "org.saveOrg";
  
  
      /**
       * 修改 组织管理
       */
      public static final String UPDATE_ORG = "org.updateOrg";
      /**
       * 删除 组织管理
       */
      public static final String DELETE_ORG = "org.deleteOrg";
  
  
      /**
       * 查询 组织管理
       */
      public static final String LIST_ORGS = "org.listOrgs";
  
  
  
      /**
       * 查询 上级组织管理
       */
      public static final String LIST_PARENT_ORGS = "org.listParentOrgs";
  
  
      /**
       * 查询 组织管理
       */
      public static final String LIST_ORG_COMMUNITYS = "org.listOrgCommunitys";
  
  
      /**
       * 查询 组织未隶属小区
       */
      public static final String LIST_ORG_NO_COMMUNITYS = "org.listOrgNoCommunitys";
  
      /**
       * 添加 组织管理
       */
      public static final String ADD_ORG_COMMUNITY = "org.saveOrgCommunity";
  
  
      /**
       * 删除 组织管理
       */
      public static final String DELETE_ORG_COMMUNITY = "org.deleteOrgCommunity";
  
  
  }