package com.huimv.management.controller; import java.util.Arrays; import java.util.List; import java.util.Map; import io.swagger.annotations.Api; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import com.huimv.management.entity.EmployeeEntity; import com.huimv.management.service.EmployeeService; import com.huimv.common.utils.PageUtils; import com.huimv.common.utils.R; /** * 养殖员信息表 * * @author yinhao * @email yinhao@163.com * @date 2021-05-07 15:32:42 */ @Api(tags = "养殖员信息表") @RestController @RequestMapping("management/employee") public class EmployeeController { @Autowired private EmployeeService employeeService; /** * 列表 */ @RequestMapping("/list") public R list(@RequestParam Map params){ PageUtils page = employeeService.queryPage(params); return R.ok().put("page", page); } /** * 信息 */ @RequestMapping("/info/{id}") public R info(@PathVariable("id") Integer id){ EmployeeEntity employee = employeeService.getById(id); return R.ok().put("employee", employee); } /** * 保存 */ @RequestMapping("/save") public R save(@RequestBody EmployeeEntity employee){ employeeService.save(employee); return R.ok(); } /** * 修改 */ @RequestMapping("/update") public R update(@RequestBody EmployeeEntity employee){ employeeService.updateById(employee); return R.ok(); } /** * 删除 */ @RequestMapping("/delete") public R delete(@RequestBody Integer[] ids){ employeeService.removeByIds(Arrays.asList(ids)); return R.ok(); } /** * 查询全部 */ @RequestMapping("/findAll") public R findAll(Integer formFarmId){ List list = employeeService.findAll(formFarmId); return R.ok().put("all",list); } }