WzOtnAreaController.java 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. //package com.example.controller;
  2. //
  3. //import cn.hutool.poi.excel.WorkbookUtil;
  4. //import com.example.config.annotation.IgnoreAuth;
  5. //import com.example.entity.OtnAreaEntity;
  6. //import com.example.entity.WzHouseContractCompareEntity;
  7. //import com.example.service.gdc.WzHouseContractCompareService;
  8. //import com.example.service.gdc.WzHouseContractTopService;
  9. //import com.example.service.gdc.WzOtnAreaService;
  10. //import com.example.utils.PageMap;
  11. //import com.example.utils.PageUtils;
  12. //import com.example.utils.R;
  13. //import org.apache.poi.ss.usermodel.Cell;
  14. //import org.apache.poi.ss.usermodel.Row;
  15. //import org.apache.poi.ss.usermodel.Sheet;
  16. //import org.apache.poi.ss.usermodel.Workbook;
  17. //import org.springframework.beans.factory.annotation.Autowired;
  18. //import org.springframework.web.bind.annotation.PathVariable;
  19. //import org.springframework.web.bind.annotation.RequestMapping;
  20. //import org.springframework.web.bind.annotation.RestController;
  21. //
  22. //import java.io.File;
  23. //import java.text.DateFormat;
  24. //import java.text.SimpleDateFormat;
  25. //import java.util.ArrayList;
  26. //import java.util.List;
  27. //
  28. //import static com.example.utils.excel.ExcelTool.getCellValue;
  29. //
  30. ///**
  31. // * 房屋出租(合同管理)
  32. // */
  33. //@RestController
  34. //@RequestMapping("/house-car/house/dist/api/wzOtnArea")
  35. //public class WzOtnAreaController {
  36. //
  37. // @Autowired
  38. // private WzOtnAreaService wzOtnAreaService;
  39. // @Autowired
  40. // private WzHouseContractTopService wzHouseContractTopService;
  41. // @Autowired
  42. // private WzHouseContractCompareService wzHouseContractCompareService;
  43. //
  44. // @RequestMapping("/list")
  45. // @IgnoreAuth
  46. // public R list(@RequestBody PageMap pageMap) {
  47. // //查询列表数据
  48. // Query query = new Query(pageMap);
  49. // List<OtnAreaEntity> list = wzOtnAreaService.queryList(query);
  50. // int total = wzOtnAreaService.queryTotal(query);
  51. // PageUtils pageUtil = new PageUtils(list, total, query.getLimit(), query.getPage());
  52. // return R.ok().put("page", pageUtil);
  53. // }
  54. //
  55. // /**
  56. // * 查找所有的省份
  57. // */
  58. // @RequestMapping("/getCityOption/{id}")
  59. // @IgnoreAuth
  60. // public R getCityOption(@PathVariable("id") String id) {
  61. // List<OtnAreaEntity> list=wzOtnAreaService.getCityOption(Long.valueOf(id));
  62. // return R.ok().put("list",list);
  63. // }
  64. //
  65. //
  66. // /**
  67. // * 导入Excel
  68. // */
  69. //// @PostMapping("/import")
  70. // @IgnoreAuth
  71. // public R importExcel(){
  72. // DateFormat df = new SimpleDateFormat("yyyy-MM-dd");
  73. // OtnAreaEntity sysConfig;
  74. // int errorIndex = 0;
  75. // try {
  76. // String[] title = new String[]{
  77. // "使用单位层级","使用单位隶属的省级公司","使用单位隶属的地市级公司",
  78. // "使用单位隶属的区县级公司", "使用专业线","租入实际用途",
  79. // "租入其他用途说明","城市区域","地段","合同总金额(含税)(元)","租入建筑面积(平米)", "租期(年)","每平米月租金","","",
  80. // "合同编号","合同名称"
  81. // };
  82. // File file=new File("C:\\Users\\PRO\\Desktop\\版本\\version3\\test1.xlsx");
  83. // List<String[]> list = new ArrayList();
  84. // Workbook workbook = WorkbookUtil.createBook(file);
  85. // // 获取第一张工作表
  86. // Sheet sheet = workbook.getSheetAt(0);
  87. // // 循环获取每一行数据 因为默认第一行为标题行,我们可以从 1 开始循环,如果需要读取标题行,从 0 开始
  88. // // sheet.getRows() 获取总行数
  89. // Row row;
  90. // for (int i = sheet.getFirstRowNum() + 1; i <= sheet.getLastRowNum(); i++) {
  91. // row = sheet.getRow(i);
  92. // System.out.println(i);
  93. // if (i >= 1 && row != null && row.getCell(0) != null && !row.getCell(0).toString().equals("")) {
  94. // String[] t = new String[title.length];
  95. // for (int m = 0; m < title.length; m++) {
  96. // Cell cell = row.getCell(m);
  97. // t[m] = getCellValue(cell);
  98. // }
  99. // list.add(t);
  100. // }
  101. // }
  102. // for(int i=0;i<list.size();i++){
  103. // WzHouseContractCompareEntity topEntity=new WzHouseContractCompareEntity();
  104. // topEntity.setUseTheUnitsHierarchy(list.get(i)[0]);
  105. // topEntity.setProvince(list.get(i)[1]);
  106. // topEntity.setCity(list.get(i)[2]);
  107. // topEntity.setCounty(list.get(i)[3]);
  108. // topEntity.setUseTheProLine(list.get(i)[4]);
  109. // topEntity.setLeaseInPracticalUse(list.get(i)[5]);
  110. // topEntity.setDescriptionOfOtherUsesOfTheLease(list.get(i)[6]);
  111. // topEntity.setCityArea(list.get(i)[7]);
  112. // topEntity.setDistrict(list.get(i)[8]);
  113. // topEntity.setRentalBuildingArea(list.get(i)[9]);
  114. // topEntity.setHireTime(list.get(i)[10]);
  115. // topEntity.setTotalMonthlyRent(list.get(i)[11]);
  116. // topEntity.setContractAmountIncludingTax(list.get(i)[12]);
  117. // topEntity.setFtProvinceAverage(list.get(i)[13]);
  118. // topEntity.setPriceProvinceAverage(list.get(i)[14]);
  119. // topEntity.setContractNumber(list.get(i)[15]);
  120. // topEntity.setContractName(list.get(i)[16]);
  121. // wzHouseContractCompareService.save(topEntity);
  122. // }
  123. //
  124. // } catch (Exception e) {
  125. // e.printStackTrace();
  126. // return R.error("第"+(errorIndex)+"行数据有问题,导入失败");
  127. // }
  128. // return R.ok();
  129. // }
  130. //
  131. //
  132. //
  133. //
  134. //}