| | |
| | | package com.ruoyi.collaborativeApproval.vo; |
| | | |
| | | import com.ruoyi.basic.dto.StorageBlobVO; |
| | | import com.ruoyi.collaborativeApproval.pojo.EnterpriseNews; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class EnterpriseNewsVo extends EnterpriseNews { |
| | | |
| | | private String createUserName; |
| | | |
| | | private List<StorageBlobVO> storageBlobDTOs; |
| | | |
| | | /** 前端兼容别名,映射 storageBlobDTOs */ |
| | | public List<StorageBlobVO> getAttachmentList() { |
| | | return storageBlobDTOs; |
| | | } |
| | | |
| | | public void setAttachmentList(List<StorageBlobVO> attachmentList) { |
| | | this.storageBlobDTOs = attachmentList; |
| | | } |
| | | } |