package com.hxzk.controller;
|
|
|
import com.github.pagehelper.PageInfo;
|
import com.hxzk.pojo.TbZypBlind;
|
import com.hxzk.service.TbZypBlindService;
|
import com.hxzk.util.result;
|
import com.hxzk.util.resultutil;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
import javax.servlet.http.HttpServletResponse;
|
import java.io.IOException;
|
import java.util.List;
|
|
/**
|
* <p>
|
* 航锦化工盲板抽堵安全作业证 前端控制器
|
* </p>
|
*
|
* @author wangfei
|
* @since 2024-04-23
|
*/
|
@RestController
|
@RequestMapping("/")
|
public class TbZypBlindController {
|
|
@Autowired
|
TbZypBlindService tbZypBlindService;
|
|
@GetMapping("findZypBlind")
|
result<List<TbZypBlind>> findLifting(Integer page, Integer limit) {
|
PageInfo<TbZypBlind> cz = tbZypBlindService.findAll(page, limit);
|
return resultutil.returnSuccess(cz.getTotal(), cz.getList());
|
}
|
|
@PostMapping("findZypBlindSearch")
|
result<List<TbZypBlind>> findZypBlindSearch(Integer page, Integer limit, String applicant, String code) {
|
PageInfo<TbZypBlind> cz = tbZypBlindService.findSearch(page, limit, applicant, code);
|
return resultutil.returnSuccess(cz.getTotal(), cz.getList());
|
}
|
|
|
@GetMapping("findtIdZypBlind")
|
public TbZypBlind findtIdZypBlind(Integer id) {
|
return tbZypBlindService.findtagidZypBlind(id);
|
}
|
|
@PostMapping("addZypBlind")
|
public void addZypBlind(TbZypBlind tbZypBlind, HttpServletResponse response) throws IOException {
|
|
if (tbZypBlind.getId() != null) {
|
tbZypBlindService.updateZypBlind(tbZypBlind);
|
} else {
|
tbZypBlindService.addZypBlind(tbZypBlind);
|
|
}
|
|
|
// Calendar calendar = Calendar.getInstance();
|
// SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
// String dateStr = sdf.format(calendar.getTime());
|
// company.setAddtime(dateStr);
|
// TbScreenSettings screenSettings = new TbScreenSettings();
|
// screenSettings.setCompanyname(company.getCompanyname());
|
// screenService.AddScreen(screenSettings);
|
// TbSystemOperationLog systemOperationLog = new TbSystemOperationLog();
|
// systemOperationLog.setName(UserController.username);
|
// systemOperationLog.setTime(gettime());
|
// systemOperationLog.setContent("增加了一个公司,该公司名称为:"+company.getCompanyname());
|
// systemLogService.insertSystem(systemOperationLog);
|
response.sendRedirect("/hxzkuwb/HouTai/JobTicket/Blind.jsp");
|
}
|
|
@PostMapping("updateZypBlind")
|
public void updateZypBlind(TbZypBlind tbZypBlind, HttpServletResponse response) throws IOException {
|
// smsReminder.setAddtime(gettime());
|
tbZypBlindService.updateZypBlind(tbZypBlind);
|
response.sendRedirect("/hxzkuwb/HouTai/JobTicket/Blind.jsp");
|
}
|
|
@GetMapping("deleteZypBlind")
|
public void deleteZypBlind(Integer id, HttpServletResponse response) throws IOException {
|
tbZypBlindService.deleteZypBlind(id);
|
response.sendRedirect("/hxzkuwb/HouTai/JobTicket/Blind.jsp");
|
}
|
}
|