1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.linghu.model.dto;
|
| import com.linghu.model.excel.FeedExportExcel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| import java.util.List;
|
| @Data
| public class ExportFeedDTO {
| @ApiModelProperty("投喂结果")
| private List<FeedExportExcel> excels;
| }
|
|