jiangqs
2023-06-18 c00d0d3bc399b6648145dfd955cedbea90f5f99d
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
28
29
30
31
32
33
34
35
36
37
package com.ruoyi.system.domain.dto;
 
import com.ruoyi.system.api.domain.dto.MgtPageDto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author jqs34
 * @version 1.0
 * @classname MgtAllotRecommerdPageDto
 * @description: TODO
 * @date 2023 2023/6/18 14:15
 */
@Data
public class MgtAllotRecommendPageDto extends MgtPageDto {
 
    @ApiModelProperty(value = "搜索关键词")
    private String keyword;
 
    @ApiModelProperty(value = "会员来源")
    private String memberSource;
 
    @ApiModelProperty(value = "来源省code")
    private String sourceProvinceCode;
 
    @ApiModelProperty(value = "来源市code")
    private String sourceCityCode;
 
    @ApiModelProperty(value = "来源区code")
    private String sourceAreaCode;
 
    @ApiModelProperty(value = "提交时间")
    private String createStartTime;
 
    @ApiModelProperty(value = "提交时间")
    private String createEndTime;
}