package com.yc.userCenter.service; import java.util.List; import java.util.Map; import org.springframework.jdbc.support.rowset.SqlRowSet; import com.yc.userCenter.entity.JurisdictionEntiy; import com.yc.userCenter.entity.UserEntity; public interface UserCenterIfc { public List> getUserCenter(String value,int page,int limit,String allow,String appAllow,String appList)throws Exception; public Map getSysUser(String usercode)throws Exception; /** * 修改用户密码 * @param newpwd * @param usercode * @return * @throws Exception */ public Map getUpdateUserPwd(String newpwd,String usercode,Integer logontype) throws Exception; public int getUserCenterInfo(String value,String usercode,Integer logontype)throws Exception; public Map getselect2SQL(String codeId,String userCode)throws Exception; public List> getMessage(String type,String search) throws Exception; public int delMessage(String id) throws Exception; public abstract int delUser(String usercode,Integer logontype)throws Exception; public SqlRowSet getSelect(String sql) throws Exception; public int addUser(UserEntity user) throws Exception; public Map selectApp(String phone,String dbId) throws Exception; public List selectApps(String dbId); public int updateApp(String value,String userId,String dbId) throws Exception; public int deleteApp(String userId,String dbId) throws Exception; public int updateSetTing(JurisdictionEntiy jurisdiction) throws Exception; public int updateTelephone(String value,String userCode,String userId)throws Exception; public Map getIsAllowLogin()throws Exception; }