⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 userbo.java

📁 实现统一的人员日志管理系统管理后台
💻 JAVA
字号:
package com.tb.log.model.bo;

import java.util.Map;

import com.tb.log.model.bo.vo.user.EditInfoVo;
import com.tb.log.model.bo.vo.user.ShowUserVo;
import com.tb.log.model.bo.vo.user.UserVo;
import com.tb.log.model.proxy.UserProxy;
import com.tb.log.system.SystemException;

public class UserBo {
	public UserVo get(int id) throws SystemException{
		return (UserVo)new UserProxy().get(id);
	}
	
	public UserVo save(UserVo user){
		return new UserProxy().save(user);
	}
	
	public boolean modify(UserVo user){
		return new UserProxy().modify(user);
	}
	
	public Map showUserInfo(ShowUserVo showUserVo){
		return new UserProxy().showUserInfo(showUserVo);
	}
	
	public Map getUserInfo(UserVo userVo){
		return new UserProxy().getUserInfo(userVo);
	}
	
	
	public Map getProList(int user_id){
		return new UserProxy().getProList(user_id);
	}
	
	
	public void editUserInfo(EditInfoVo editInfoVo){
		new UserProxy().editUserInfo(editInfoVo);
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -