| | |
| | | import org.springblade.modules.FTP.FtpUtil; |
| | | import org.springblade.modules.information.entity.Information; |
| | | import org.springblade.modules.information.service.IInformationService; |
| | | import org.springblade.modules.recordLegalperson.dto.RecordLegalpersonDTO; |
| | | import org.springblade.modules.recordLegalperson.entity.RecordLegalperson; |
| | | import org.springblade.modules.recordLegalperson.service.IRecordLegalpersonService; |
| | | import org.springblade.modules.recordLegalperson.vo.RecordLegalpersonVO; |
| | |
| | | Map map = recordService.selectIn(cardid, type); |
| | | return R.data(map); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 保安公司法人变更详情(基本信息和附件列表信息) |
| | | * @param record |
| | | * @return |
| | | */ |
| | | @GetMapping("/details") |
| | | public R details(RecordLegalpersonDTO record) { |
| | | RecordLegalpersonDTO detail = recordService.getDetails(record); |
| | | return R.data(detail); |
| | | } |
| | | } |