duhuizhe
2024-04-19 64c4fd3c7067c7626dc960a70b4bc2c3662bc653
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package ${context.packageName}.domain.query;
 
import com.yqzx.common.domain.query.PageQuery;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * 功能描述: ${context.bizChName}分页查询query
 *
 * @Author ${context.author}
 * @Date ${context.dateTime}
 * @version 1.0
 */
@ApiModel("${context.bizChName}查询参数")
@Data
public class ${context.bizEnBigName}Query extends PageQuery {
    <% for(item in queryTableInfo!){ %>
    <% if(item.name != 'id' ){ %>
 
    @ApiModelProperty("${item.comment}")
    private ${item.type} ${item.propertyName};
    <% } %>
    <% } %>
}