You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
3.1 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.yanzhen.controller;
import com.github.pagehelper.PageInfo;
import com.yanzhen.entity.Bed;
import com.yanzhen.service.BedService线宿;
import com.yanzhen.service.DormitoryStudentService宿;
import com.yanzhen.utils.Result;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.Map;
@RestController// 声明这是一个控制器并且返回的数据直接写入HTTP响应体中
@RequestMapping("/bed")// 设置请求路径前缀为/bed所有的映射都在这个路径之下
public class BedController {
@Autowired// 自动注入BedService实例
private BedService线宿 bedService;
@Autowired// 自动注入DormitoryStudentService实例处理与学生宿舍相关的业务逻辑
private DormitoryStudentService宿 dormitoryStudentService;
@PostMapping("create")// 映射HTTP POST请求到create方法
public Result create(@RequestBody Bed bed){// 从请求体中获取Bed对象
int flag = bedService.create(bed);// 调用bedService的create方法创建床位记录
if(flag>0){// 如果创建成功
return Result.ok();// 返回成功结果
}else{// 如果创建失败
return Result.fail();// 返回失败结果
}
}
@GetMapping("delete")// 映射HTTP GET请求到delete方法删除床位记录
public Result delete(String ids){// 从请求参数中获取要删除的床位ID字符串
int flag = bedService.delete(ids);// 调用bedService的delete方法删除床位记录传入要删除的床位ID字符串
if(flag>0){// 如果删除成功
return Result.ok();// 返回成功结果
}else{// 如果删除失败
return Result.fail();// 返回失败结果
}
}
@PostMapping("update")// 映射HTTP POST请求到update方法更新床位信息
public Result update(@RequestBody Bed bed){// 从请求体中获取更新后的Bed对象
int flag = bedService.update(bed);// 调用bedService的update方法更新床位记录
if(flag>0){// 如果更新成功
return Result.ok();// 返回成功结果
}else{// 如果更新失败
return Result.fail();// 返回失败结果
}
}
@GetMapping("detail")// 映射HTTP GET请求到detail方法获取床位详情
public Bed detail(Integer id){ // 从请求参数中获取床位ID
return bedService.detail(id); // 调用bedService的detail方法获取床位详情并返回
}
@PostMapping("query")// 映射HTTP POST请求到query方法查询床位列表
public Map<String,Object> query(@RequestBody Bed bed){ // 从请求体中获取查询条件Bed对象
PageInfo<Bed> pageInfo = bedService.query(bed);// 调用bedService的query方法进行分页查询
pageInfo.getList().forEach(entity->{// 遍历查询结果列表
entity.setStudent(dormitoryStudentService.queryStudentByBedId(entity.getId()));// 为每个床位设置对应的学生信息
});
return Result.ok(pageInfo);// 返回包含分页信息的查询结果
}
}