| package com.ruoyi.system.query; | 
|   | 
| import com.ruoyi.common.core.domain.BasePage; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| @Data | 
| @ApiModel(value = "模板分页列表query") | 
| public class TemplateListQuery extends BasePage { | 
|   | 
|     @ApiModelProperty(value = "模板名称") | 
|     private String templateName; | 
|     @ApiModelProperty(value = "开始时间 yyyy-MM-dd HH:mm:ss") | 
|     private String startTime; | 
|     @ApiModelProperty(value = "结束时间 yyyy-MM-dd HH:mm:ss") | 
|     private String endTime; | 
|   | 
|   | 
| } |