首页>代码>基于ssm(spring+springmvc+mybatis)的餐厅员工管理系统>/z_sias/src/com/sias/ll/controller/SalaryController.java
package com.sias.ll.controller;

import java.util.List;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

import com.sias.ll.pojo.Salary;
import com.sias.ll.service.SalaryService;

@Controller
@RequestMapping("salary")
public class SalaryController {
	
	@Autowired
	private SalaryService salaryService;
	
	@RequestMapping("salary")
	public String showInfo(){
		return "salary";
	}
	
	//根据主键查询信息
	@RequestMapping("selectById")
	public String selectById(Integer salaryid,Model model) {
		Salary salary = salaryService.selectByPrimaryKey(salaryid);
		model.addAttribute("salary", salary);
		return "UpdateSalary";
	}
	
	//查询所有工资信息
	@RequestMapping("selectAll")
	public String selectAll(Model model) {
		List<Salary> salarys = salaryService.selectAll();
		model.addAttribute("salarys", salarys);
		return "ShowSalary";
	}
	
	//模糊查询
	@RequestMapping("selectByName")
	public List<Salary> selectByName(String name) {
		List<Salary> salarys = salaryService.selectByName(name);
		return salarys;
	}
	
	//插入工资信息
	@RequestMapping("insert")
	public String insertSalary(Salary salary) {
		salaryService.insertSalary(salary);
		return "attendanceRe";//返回到首页
	}
	
	//删除工资信息
	@RequestMapping("delete")
	public String deleteSalary(Integer salaryid) {
		salaryService.deleteSalary(salaryid);
		return "attendanceRe";//返回到首页
	}
	
	//修改工资信息
	@RequestMapping("update")
	public String updateSalary(Salary salary) {
		salaryService.updateSalary(salary);
		return "attendanceRe";//返回到首页
	}
	

}
最近下载更多
海棠花瘦  LV9 2023年5月9日
LCL10086  LV3 2023年1月15日
001128wxw  LV3 2022年12月15日
微信网友_6108289352863744  LV4 2022年9月16日
and123456  LV11 2022年7月15日
Hsy605  LV9 2022年6月22日
zzwwjjmm  LV2 2022年6月7日
qwer123546  LV13 2022年5月12日
ferrymen  LV6 2022年4月20日
591231555  LV20 2022年4月18日
最近浏览更多
bluerstar  LV1 10月23日
angaochong  LV5 10月16日
krispeng  LV13 10月3日
暂无贡献等级
1690356080  LV37 7月3日
xzg123456  LV6 6月19日
rain112  LV31 6月13日
530628 6月5日
暂无贡献等级
求学的熊猫  LV11 5月27日
超级黄问间 5月22日
暂无贡献等级
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友