| package com.doumee.dao.web.response; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.time.LocalDate; | 
|   | 
| /** | 
|  * @author T14 | 
|  */ | 
|   | 
| @Data | 
| @ApiModel("日期关联资源") | 
| public class DateTimeResourceDate <T>{ | 
|   | 
|   | 
|     @ApiModelProperty(value = "日期") | 
|     private LocalDate localDate; | 
|   | 
|     @ApiModelProperty(value = "资源") | 
|     private T resource; | 
|   | 
| } |