fwq
2024-02-05 b9e3146ad0aec4ee275c59ccde668a142fa3660c
提交 | 用户 | age
7df8eb 1 package com.hz.his.dto.user;
F 2
3
4 import com.hz.his.dto.PageDto;
5 import lombok.Data;
6
7 /**
8  * 用户参数
9  */
10 @Data
11 public class UserListDto extends PageDto {
12     /**用户标识*/
13     private String userId;
14     /**电话*/
15     private String tel;
16     /**性别*/
17     private Integer sex;
18     /**名称*/
19     private String name;
20     /**CIQ*/
21     private String ciq;
22     /**会员等级*/
23     private String memberLevel;
24     /**用户做过项目名称*/
25     private String projectName;
26
27     /**用户消费时间段(开始)*/
28     private String consumeStartTime;
29     /**用户消费时间段(结束)*/
30     private String consumeEndTime;
31
32     /**用户创建时间段(开始)*/
33     private String createStartTime;
34     /**用户消费时间段(结束)*/
35     private String createEndTime;
36 }