WzRentHouseArrearsController.java 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. package com.example.controller.gdc;
  2. import com.example.config.annotation.IgnoreAuth;
  3. import com.example.pojo.gdc.WzRentHouseArrearsEntity;
  4. import com.example.service.gdc.WzRentHouseArrearsService;
  5. import com.example.utils.PageMap;
  6. import com.example.utils.PageUtils;
  7. import com.example.utils.Query;
  8. import com.example.utils.R;
  9. import com.example.utils.excel.ExcelExport;
  10. import org.springframework.beans.factory.annotation.Autowired;
  11. import org.springframework.web.bind.annotation.GetMapping;
  12. import org.springframework.web.bind.annotation.RequestBody;
  13. import org.springframework.web.bind.annotation.RequestMapping;
  14. import org.springframework.web.bind.annotation.RestController;
  15. import javax.servlet.http.HttpServletResponse;
  16. import java.text.DateFormat;
  17. import java.text.SimpleDateFormat;
  18. import java.util.ArrayList;
  19. import java.util.Date;
  20. import java.util.HashMap;
  21. import java.util.List;
  22. import java.util.Map;
  23. /**
  24. * 出租监控_出租房屋欠费超5万元
  25. */
  26. @RestController
  27. @RequestMapping("/house-car/house/dist/api/wzRentHouseArrears")
  28. public class WzRentHouseArrearsController {
  29. @Autowired
  30. private WzRentHouseArrearsService wzRentHouseArrearsService;
  31. /**
  32. * 出租监控_出租房屋欠费超5万元
  33. */
  34. @RequestMapping("/list")
  35. @IgnoreAuth
  36. public R list(@RequestBody PageMap pageMap) {
  37. //查询列表数据
  38. Query query = new Query(pageMap);
  39. Query query1 = new Query(pageMap);
  40. if(query.get("statisticalMonth")==null||query.get("statisticalMonth").toString().equals("")){
  41. String lastTime=wzRentHouseArrearsService.getLastStaticMonth();
  42. query.put("statisticalMonth",lastTime);
  43. query1.put("statisticalMonth",lastTime);
  44. }
  45. List<WzRentHouseArrearsEntity> resultList = wzRentHouseArrearsService.queryList(query);
  46. int total = wzRentHouseArrearsService.queryTotal(query1);
  47. PageUtils pageUtil = new PageUtils(resultList, total, query.getLimit(), query.getPage());
  48. return R.ok().put("page", pageUtil);
  49. }
  50. /**
  51. * 清单excel
  52. */
  53. @GetMapping("/excel")
  54. @IgnoreAuth
  55. public void excel(String name, String buildingNameAlias,String statisticalMonth, String city, String county, HttpServletResponse response) {
  56. Map<String, Object> map = new HashMap<>();
  57. if(statisticalMonth==null||statisticalMonth.equals("")||statisticalMonth.equals("undefined")){
  58. String lastTime=wzRentHouseArrearsService.getLastStaticMonth();
  59. map.put("statisticalMonth",lastTime);
  60. }
  61. if (buildingNameAlias != null) {
  62. map.put("buildingNameAlias", buildingNameAlias);
  63. }
  64. if (city != null) {
  65. map.put("city", city);
  66. }
  67. if (county != null) {
  68. map.put("county", county);
  69. }
  70. List<WzRentHouseArrearsEntity> resultList = wzRentHouseArrearsService.queryList(map);
  71. DateFormat df = new SimpleDateFormat("yyyyMMddHHmmss");
  72. ExcelExport ee1 = new ExcelExport("出租监控_出租房屋欠费超5万元" + df.format(new Date()));
  73. List<Object> colList;
  74. List<Object[]> allList = new ArrayList();
  75. for (int i = 0; i < resultList.size(); i++) {
  76. colList = new ArrayList();
  77. colList.add(resultList.get(i).getMonth());
  78. colList.add(resultList.get(i).getCity());
  79. colList.add(resultList.get(i).getCounty());
  80. colList.add(resultList.get(i).getUserName());
  81. colList.add(resultList.get(i).getUserAttribute());
  82. colList.add(WzHouseMaintenaCostController.toThousands(resultList.get(i).getArrears(),true));
  83. allList.add(colList.toArray());
  84. }
  85. String[] header = new String[]{
  86. "统计月份",
  87. "地市",
  88. "县区",
  89. "用户名称",
  90. "租户属性",
  91. "累计欠费"
  92. };
  93. ee1.addSheetByArray(df.format(new Date()) + "清单", allList, header);
  94. ee1.export(response);
  95. }
  96. }