| 12345678910111213141516171819202122232425262728 |
- package com.qdport.vo;
- import com.qdport.entity.PolicyShare;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.util.ArrayList;
- import java.util.List;
- /**
- * 政策共享
- *
- * @author yuheng
- * @since 1.0.0 2024-09-30
- */
- @Data
- @EqualsAndHashCode(callSuper = true)
- public class PolicyShareVO extends PolicyShare {
- private static final long serialVersionUID = 1L;
- private String deptName;
- private String companyName;
- private List<PolicyFileVO> fileList = new ArrayList<>();
- private String excelUrl;
- }
|