guang
2024-06-14 21cc776dfb780d6e2b0335c1542e6d3e898ce8cb
提交 | 用户 | age
a4c260 1 package com.hz.crm.dto;
995edc 2
W 3
4 import lombok.Data;
5
6 /**
7  * 用户dto
8  * */
9 @Data
10 public class UserDto {
11
12     /**编号*/
13     private String ciq;
14     /**搜索*/
15     private String hisId;
cf14cc 16     /**电话号码*/
995edc 17     private Integer tel;
W 18
cf14cc 19     /**浏览类型*/
A 20     private Integer type;
21     /**浏览记录开始时间*/
22     String startTime;
23     /**浏览记录结束时间*/
24     String endTime;
af03d3 25     String remarks;
c11a9f 26     //保留的用户标识
W 27     private String persistUserId;
5881a8 28     //保留的用户名称
W 29     private String persistUserName;
c11a9f 30     //合并作废的用户标识
W 31     private String repealUserId;
995edc 32 }