| | |
| | | @ExcelProperty(value = "身份", index = 2) |
| | | private String identity; |
| | | |
| | | @ExcelProperty(value = "电话", index = 3) |
| | | @ExcelProperty(value = "手机号", index = 3) |
| | | private String phone; |
| | | |
| | | @ExcelProperty(value = "报名时间", index = 0) |
| | |
| | | @ApiModelProperty("业务主键 用于跳转") |
| | | private Long businessId; |
| | | |
| | | @ApiModelProperty("社区活动类型 1志愿者活动 2居民活动") |
| | | @ApiModelProperty("社区活动类型 1志愿者活动 2居民活动 3党建活动") |
| | | private Integer activityType; |
| | | |
| | | } |
| | |
| | | String ftpUrl = "/mnt/data/web/excel/"; |
| | | R r = communityService.getSignLists(activitySignVO); |
| | | if (R.isOk(r)) { |
| | | List<ComActActSignExcelVO> excelVOS = |
| | | JSONArray.parseArray(JSONArray.toJSONString(r.getData()), ComActActSignExcelVO.class); |
| | | excelVOS.forEach(e -> e.generateCondition()); |
| | | List<ComActActSignExcelNewVO> excelVOS = |
| | | JSONArray.parseArray(JSONArray.toJSONString(r.getData()), ComActActSignExcelNewVO.class); |
| | | try { |
| | | SFTPUtil sftp = new SFTPUtil(userName, password, host, port); |
| | | sftp.login(); |