ServiceCodeOrgConstant.java 1.16 KB
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";


}