|
@@ -0,0 +1,42 @@
|
|
|
+package com.hrsk.cloud.eg.dto.data;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+
|
|
|
+ * @author: bianlanzhou
|
|
|
+ * @create: 2024-08-01 13:48
|
|
|
+ * @description: User信息Dto
|
|
|
+ **/
|
|
|
+@Data
|
|
|
+public class UserInfoDto {
|
|
|
+ private Long userId;
|
|
|
+ private String userMobile;
|
|
|
+ private String idCardNo;
|
|
|
+ private String realName;
|
|
|
+ private String ip;
|
|
|
+ private Integer runPlatform;
|
|
|
+ private String deviceModel;
|
|
|
+ private Integer appId;
|
|
|
+ private String policeSex;
|
|
|
+ private String policeBirthBate;
|
|
|
+ private Integer age;
|
|
|
+ private String companyCity;
|
|
|
+ private Integer socialSecurity;
|
|
|
+ private Integer accumulation;
|
|
|
+ private Integer creditCard;
|
|
|
+ private Integer creditLimit;
|
|
|
+ private Integer sesame;
|
|
|
+ private Integer addressCityCode;
|
|
|
+ private Integer profession;
|
|
|
+ private Integer overdue;
|
|
|
+ private Integer borrowMoney;
|
|
|
+ private Integer borrowLimit;
|
|
|
+ private Integer borrowPurpose;
|
|
|
+ private String phoneMd5;
|
|
|
+ private String cityOfWork;
|
|
|
+ private String cityCode;
|
|
|
+ private String userMobileSalt;
|
|
|
+ private String idCardNoSalt;
|
|
|
+ private String channelCode;
|
|
|
+ private String activeChannelCode;
|
|
|
+}
|