|
@ -87,10 +87,10 @@ public class SignInfoController extends AbstractController {
|
87
|
87
|
}
|
88
|
88
|
|
89
|
89
|
public String setStringBoolen(Integer value) {
|
90
|
|
return (value == 1) ? "是" : "否";
|
|
90
|
return (value != null) && (value == 1) ? "是" : "否";
|
91
|
91
|
}
|
92
|
92
|
|
93
|
|
@GetMapping("/downloadxlssign")
|
|
93
|
@GetMapping("/downloadxls")
|
94
|
94
|
@RequiresPermissions("admin:signinfo:list")
|
95
|
95
|
public void makeExcel(HttpServletResponse response, @RequestParam Map<String, Object> params) throws Exception {
|
96
|
96
|
if (!params.containsKey("meetingId")) {
|