| | |
| | | package cn.iocoder.yudao.module.crm.controller.admin.followup.vo; |
| | | |
| | | import cn.iocoder.yudao.module.system.api.storage.dto.StorageBlobRespDTO; |
| | | import cn.iocoder.yudao.framework.excel.core.annotations.DictFormat; |
| | | import cn.iocoder.yudao.module.crm.controller.admin.business.vo.business.CrmBusinessRespVO; |
| | | import cn.idev.excel.annotation.ExcelIgnoreUnannotated; |
| | |
| | | |
| | | @Schema(description = "图片") |
| | | private List<String> picUrls; |
| | | @Schema(description = "附件") |
| | | private List<String> fileUrls; |
| | | @Schema(description = "附件列表") |
| | | private List<StorageBlobRespDTO> attachmentList; |
| | | |
| | | @Schema(description = "创建人", example = "1024") |
| | | @ExcelProperty("创建人") |
| | | private String creator; |
| | | @Schema(description = "创建人名字", example = "芋道源码") |
| | | @Schema(description = "创建人名字", example = "超级管理员") |
| | | @ExcelProperty("创建人名字") |
| | | private String creatorName; |
| | | |