| | |
| | | import org.springblade.modules.information.entity.Information; |
| | | import org.springblade.modules.information.service.IInformationService; |
| | | import org.springblade.modules.permit.vo.PermitVO; |
| | | import org.springblade.modules.record.dto.RecordDTO; |
| | | import org.springblade.modules.record.entity.Record; |
| | | import org.springblade.modules.record.service.IRecordService; |
| | | import org.springblade.modules.record.vo.RecordVO; |
| | | import org.springblade.modules.recordLegalperson.dto.RecordLegalpersonDTO; |
| | | import org.springblade.modules.resource.service.IAttachService; |
| | | import org.springblade.modules.system.entity.Dept; |
| | | import org.springblade.modules.system.entity.User; |
| | |
| | | Map map = recordService.selectIn(cardid, type); |
| | | return R.data(map); |
| | | } |
| | | |
| | | /** |
| | | * 保安公司备案信息(基本信息和附件列表信息) |
| | | * @param record |
| | | * @return |
| | | */ |
| | | @GetMapping("/details") |
| | | public R details(RecordDTO record) { |
| | | RecordDTO detail = recordService.getDetails(record); |
| | | return R.data(detail); |
| | | } |
| | | } |