SystemBackDAO.java 8.09 KB
Newer Older
罗绍泽 committed
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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
package com.gaowj.business.system;

import java.util.List;
import java.util.Map;

import org.apache.ibatis.session.RowBounds;

import com.gaowj.business.exception.BusinessException;

public interface SystemBackDAO {

	/***
	 * 登陆时获取登陆人的所有可操作模块
	 */
    List<Map<String,Object>> getUserAllModule(String uCode) throws BusinessException;
    /***
	 *选取top菜单
	 */
    List<Map<String,Object>> getTopMenu(Map<String,Object> query) throws BusinessException ;
    /***
	 *获取left1级菜单
	 */
    List<Map<String,Object>> getLeftMenu1(Map<String,Object> query) throws BusinessException ;
    /***
	 *获取left2级菜单
	 */
    List<Map<String,Object>> getLeftMenu2(Map<String,Object> query) throws BusinessException ;
    /***
	 *用户信息
	 */
    List<Map<String, Object>> listLoginUserInfo(RowBounds rowbounds, Map<String, Object> query) throws BusinessException ;
    
    List<Map<String,Object>> listLoginUserInfo(Map<String,Object> query) throws BusinessException ;
    
    int listLoginUserInfoCount(Map<String, Object> query) throws BusinessException ;
    
    Map<String,Object> getMaxLoginUserCode(Map<String,Object> query) throws BusinessException ;
    
    Map<String,Object> getMaxLoginUserEmid(Map<String,Object> query) throws BusinessException ;
    
    List<Map<String, Object>> listLoginServiceUserInfo(RowBounds rowbounds, Map<String, Object> query) throws BusinessException ;
    
    List<Map<String,Object>> listLoginServiceUserInfo(Map<String,Object> query) throws BusinessException ;
    
    int listLoginServiceUserInfoCount(Map<String, Object> query) throws BusinessException ;
    /**
     * 用户增加
     */
    void insert_user(Map<String,Object> entity) throws BusinessException ;
    /**
     * 用户修改
     */
    void update_user(Map<String,Object> entity) throws BusinessException ;
    /**
     * 用户删除
     */
    void delete_user(Map<String,Object> entity) throws BusinessException ;
    
    void delete_batch_user(List<String> list) throws BusinessException ;
    /***
	 *部门信息
	 */
    List<Map<String, Object>> listDepartmentInfo(RowBounds rowbounds, Map<String, Object> query) throws BusinessException ;
    
    List<Map<String,Object>> listDepartmentInfo(Map<String,Object> query) throws BusinessException ;
    
    int listDepartmentInfoCount(Map<String, Object> query) throws BusinessException ;
    
    List<Map<String, Object>> listDepartmentSericeInfo(RowBounds rowbounds, Map<String, Object> query) throws BusinessException ;
    
    List<Map<String,Object>> listDepartmentSericeInfo(Map<String,Object> query) throws BusinessException ;
    
    int listDepartmentServiceInfoCount(Map<String, Object> query) throws BusinessException ;
    
    /**
     * 部门增加
     */
    void insert_depart(Map<String,Object> entity) throws BusinessException ;
    /**
     * 部门修改
     */
    void update_depart(Map<String,Object> entity) throws BusinessException ;
    /**
     * 部门删除
     */
    void delete_depart(Map<String,Object> entity) throws BusinessException ;
    
    /***
	 *密码修改
	 */
    void modifyPass(Map<String,Object> entity) throws BusinessException ;
    /***
	 *功能组增加
	 */
    void insert_group(Map<String,Object> entity) throws BusinessException ;
    /***
	 *功能组修改
	 */
    void update_group(Map<String,Object> entity) throws BusinessException ;
    /***
	 *功能组删除
	 */
    void delete_group(String gid) throws BusinessException ;
    /***
	 *功能组显示所有
	 */
    List<Map<String, Object>> listGroupAll(RowBounds rowbounds, Map<String, Object> query) throws BusinessException ;
	
	int listGroupAllCount(Map<String, Object> query)throws BusinessException ;
	
	List<Map<String, Object>> listGroupAll(Map<String, Object> query) throws BusinessException ;
	
	/**
	 *日志信息
	 */
    List<Map<String,Object>> listLogInfo(Map<String, Object> query) throws BusinessException ;
    
    List<Map<String, Object>> listLogInfo(RowBounds rowbounds, Map<String, Object> query)throws BusinessException ;
	
	int listLogInfoCount(Map<String, Object> query)throws BusinessException ;
	
	/**
	 * 增加日志
	 */
	void insert_log(Map<String,Object> entity) throws BusinessException ;
	
	Integer getMaxLog(Map<String, Object> query)throws BusinessException ;
	
	/**
	 *log4j日志信息
	 */
    List<Map<String,Object>> listLog4jInfo(Map<String, Object> query) throws BusinessException ;
    
    List<Map<String, Object>> listLog4jInfo(RowBounds rowbounds, Map<String, Object> query)throws BusinessException ;
	
	int listLog4jInfoCount(Map<String, Object> query)throws BusinessException ;
	
	/**
	 * 增加log4j日志
	 */
	void insert_log4j(Map<String,Object> entity) throws BusinessException ;
	
	Integer getMaxLog4j(Map<String, Object> query)throws BusinessException ;
	
	void update_log4j(Map<String,Object> entity) throws BusinessException ;
	
	/**
	 *业务操作日志信息
	 */
    List<Map<String,Object>> listLogBusiness(Map<String, Object> query) throws BusinessException ;
    
    List<Map<String, Object>> listLogBusiness(RowBounds rowbounds, Map<String, Object> query)throws BusinessException ;
	
	int listLogBusinessCount(Map<String, Object> query)throws BusinessException ;
	
	/**
	 * 增加业务操作日志
	 */
	void insert_logBusiness(Map<String,Object> entity) throws BusinessException ;

    /**
	 *模块新增
	 */
    void insert_module(Map<String,Object> entity) throws BusinessException ;

    /**
	 *模块修改
	 */
    void update_module(Map<String,Object> entity) throws BusinessException ;
    /**
	 *模块删除
	 */
    void delete_module(Map<String,Object> entity) throws BusinessException ;

    /**
	 *模块显示所有
	 */
    List<Map<String,Object>> listModule(Map<String, Object> query) throws BusinessException ;
    
    List<Map<String, Object>> listModule(RowBounds rowbounds, Map<String, Object> query)throws BusinessException ;
	
	int listModuleCount(Map<String, Object> query)throws BusinessException ;

    /**
	 *模块大类显示所有
	 */
    List<Map<String,Object>> listModuleType(Map<String, Object> query) throws BusinessException ;
    
    List<Map<String, Object>> listModuleType(RowBounds rowbounds, Map<String, Object> query)throws BusinessException ;
	
	int listModuleTypeCount(Map<String, Object> query)throws BusinessException ;

    /**
	 *模块大类新增
	 */
    void insert_moduleType(Map<String,Object> entity) throws BusinessException ;
    /**
	 *模块大类修改
	 */
    void update_moduleType(Map<String,Object> entity) throws BusinessException ;
    /**
	 *模块大类删除
	 */
    void delete_moduleType(Map<String,Object> entity) throws BusinessException ;

    /**
	 *功能组模块选定-增加
	 */
    void insert_group_c_m(Map<String,Object> entity) throws BusinessException ;
    /**
	 *功能组模块选定-删除
	 */
    void delete_group_c_m(Map<String,Object> entity) throws BusinessException ;
    /**
     * 功能组模块选定-取最大序号gm
     * 
     */
    int getMaxGm(Map<String, Object> query) throws BusinessException ;

    /**
	 *功能组模块选定-显示对应组的所有模块
	 */
     List<Map<String,Object>> listGroupM_from_G(Map<String, Object> query) throws BusinessException ;

    /**
	 *功能组人员选定-增加
	 */
    void insert_group_c_u(Map<String,Object> entity) throws BusinessException ;
    /**
	 *功能组人员选定-删除
	 */
    void delete_group_c_u(Map<String,Object> entity) throws BusinessException ;
    /**
     * 功能组模块选定-取最大序号gu
     * 
     */
    int getMaxGu(Map<String, Object> query) throws BusinessException ;

    /**
	 *功能组人员选定-显示对应组的所有人员
	 */
     List<Map<String,Object>> listGroupU_from_G(Map<String, Object> query) throws BusinessException ;

	/**
	 *人管人-显示对应管理者管理的所有人员
	 */
    List<Map<String,Object>> listPerson_from_P(Map<String, Object> query) throws BusinessException ;
    /**
     * 人管人-增加
     */
    void insert_person_p(Map<String,Object> entity) throws BusinessException ;
    /**
     * 人管人-删除
     */
    void delete_person_p(Map<String,Object> entity) throws BusinessException ;

}