From 01ec4f93e45a462732e046589c9e94256c8b94e5 Mon Sep 17 00:00:00 2001
From: fwq <582742538@qq.com>
Date: 星期一, 25 九月 2023 14:38:48 +0800
Subject: [PATCH] 用户

---
 phis-download-feign/src/main/java/com/hz/his/dto/user/DUserTagDto.java       |   17 +
 phis-download-feign/src/main/java/com/hz/his/dto/DConsultationDto.java       |  104 ++++++++
 phis-download-feign/src/main/java/com/hz/his/dto/user/DUserChangeLogDto.java |    2 
 phis-download-feign/src/main/java/com/hz/his/dto/user/DUserDto.java          |  578 ++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 700 insertions(+), 1 deletions(-)

diff --git a/phis-download-feign/src/main/java/com/hz/his/dto/DConsultationDto.java b/phis-download-feign/src/main/java/com/hz/his/dto/DConsultationDto.java
new file mode 100644
index 0000000..a8059fd
--- /dev/null
+++ b/phis-download-feign/src/main/java/com/hz/his/dto/DConsultationDto.java
@@ -0,0 +1,104 @@
+package com.hz.his.dto;
+
+
+import lombok.Data;
+
+import java.util.Date;
+
+/**
+ * 鍜ㄨ璁板綍
+ **/
+@Data
+public class DConsultationDto{
+    // 璁板綍id 缁ф壙dto宸插瓨鍦�
+    private String id;
+    // 鐢ㄦ埛ID
+    private String userId;
+    // 闂ㄥ簵/璇婃墍ID
+    private String shopId;
+    // 绉戝缂栫爜
+    private String departmentCode;
+    // 绉戝鍚嶇О
+    private String departmentName;
+
+    /**鍜ㄨ绫诲瀷*/
+    private Integer consultType;
+    // 鍜ㄨ鏂瑰紡浠g爜 瀛楀吀琛�
+    private String methodCode;
+    // 鍜ㄨ鏂瑰紡鍚嶇О
+    private String methodCodeName;
+
+    // 鍜ㄨ椤圭洰 - ID鍒楄〃
+    private String neededProjectIds;
+    // 鎺ㄨ崘椤圭洰 - ID鍒楄〃
+    private String recommendedProjectIds;
+    // 鍏虫敞娲诲姩 - ID鍒楄〃
+    private String focusActivitiesIds;
+    // 娼滃湪椤圭洰 - ID鍒楄〃
+    private String potentialProjectIds;
+
+    // 鏈垚浜ゅ師鍥�
+    private String description;
+    // 鍜ㄨ鍐呭
+    private String content;
+    // 澶囨敞
+    private String remark;
+    // 鏄惁鎰挎剰涓婇棬
+    private Integer isCanCome = 0;
+    // 鏄惁鍒拌
+    private Integer isVisit = 0;
+    // 鏄惁浠樻
+    private Integer isPay = 0;
+    // 鏄惁鑽夌
+    private Integer isDraft = 0;
+
+    // 椤电爜
+    private Integer pageNum;
+    // 椤垫暟
+    private Integer pageSize;
+    // 寮�濮嬫椂闂�
+    private Date startTime;
+    // 缁撴潫鏃堕棿
+    private Date endTime;
+    // 鐢ㄦ埛鍚嶇О
+    private String userName;
+    // 鍏抽敭璇嶆煡璇� 鏈垚浜ゅ師鍥� 鍜ㄨ鍐呭 澶囨敞
+    private String keyWord;
+    // 鍛樺伐瑙掕壊
+    private String roleId;
+
+    // 鍜ㄨ甯�
+    private String hisCorpUserId;
+    // 鐢电綉鍜ㄨ甯�
+    private String internetCorpUserId;
+    // 瀹㈡湇
+    private String chatCorpUserId;
+    // 鍒涘缓浜�
+    private String createEmployeeId;
+    // 鍒涘缓浜洪儴闂�
+    private String createEmployeePartId;
+    // 鍏虫敞娲诲姩
+    private String focusActivityId;
+    // 鍜ㄨ椤圭洰
+    private String neededProjectTypeId;
+    // 娼滃湪椤圭洰
+    private String potentialProjectTypeId;
+    // 鎺ㄨ崘椤圭洰
+    private String recommendedProjectId;
+    // 瀹㈡埛鏉ユ簮娓犻亾鍒嗙被
+    private String channelsTypeId;
+    // 瀹㈡埛鏉ユ簮涓�绾ф笭閬�
+    private String channelId;
+    // 瀹㈡埛鏉ユ簮浜岀骇娓犻亾
+    private String channel2Id;
+    // 鍒拌绫诲瀷
+    private String recentVisitType;
+    // 鍒拌鐘舵��
+    private Integer recentVisitStatus;
+    // 鏄惁鎴愪氦
+    private Integer isMakeADeal;
+    // 瀹㈡埛鎴愪氦鏍囩
+    private String isMakeADealLabel;
+
+
+}
diff --git a/phis-download-feign/src/main/java/com/hz/his/dto/DUserChangeLogDto.java b/phis-download-feign/src/main/java/com/hz/his/dto/user/DUserChangeLogDto.java
similarity index 84%
rename from phis-download-feign/src/main/java/com/hz/his/dto/DUserChangeLogDto.java
rename to phis-download-feign/src/main/java/com/hz/his/dto/user/DUserChangeLogDto.java
index 411e7fd..af7e94e 100644
--- a/phis-download-feign/src/main/java/com/hz/his/dto/DUserChangeLogDto.java
+++ b/phis-download-feign/src/main/java/com/hz/his/dto/user/DUserChangeLogDto.java
@@ -1,4 +1,4 @@
-package com.hz.his.dto;
+package com.hz.his.dto.user;
 
 
 import com.hz.his.dto.common.DCommonDto;
diff --git a/phis-download-feign/src/main/java/com/hz/his/dto/user/DUserDto.java b/phis-download-feign/src/main/java/com/hz/his/dto/user/DUserDto.java
new file mode 100644
index 0000000..7435c8f
--- /dev/null
+++ b/phis-download-feign/src/main/java/com/hz/his/dto/user/DUserDto.java
@@ -0,0 +1,578 @@
+package com.hz.his.dto.user;
+
+
+import java.util.List;
+
+/**
+ * 鐢ㄦ埛
+ **/
+public class DUserDto {
+    private List<DUserTagDto> userTagInfo;
+
+    private Integer appType;
+
+    private String userStatus;
+    private String hisCorpUserId;
+    private String hisCorpUserName;
+    private String shopId;
+    private String shopName;
+
+    private String cIq;
+
+    private String cStartTime;
+    private String cEndTime;
+
+    private String userLevel;
+
+    private String startBirthDay;
+    private String endBirthDay;
+
+    private String creator;
+
+    private String userType;
+
+
+
+    private Integer gender;
+
+    private Integer startAge;
+    private Integer endAge;
+
+    private String channelType;
+    private String channelId;
+
+    private String cuName;
+
+    private String userRole;
+
+    private String startReturnVisitTime;
+    private String endReturnVisitTime;
+
+    private String startFirstTime;
+    private String endFirstTime;
+
+    private String startlatelyTime;
+    private String endlatelyTime;
+
+    private String startFirstPayTime;
+    private String endFirstPayTime;
+
+    private String startLastPayTime;
+    private String endLastPayTime;
+
+    private Integer isComeShop;
+
+    private Integer isConsume;
+
+    private Integer isBindCRMTime;
+
+    private Integer isBindSTTime;
+
+    private Integer isBindGZHTime;
+
+    private String country;
+    private String province;
+    private String city;
+    private String area;
+
+    private String inviteeId;
+    private String inviteeName;
+
+    private String tmkName;
+    private String doctorNme;
+
+    private String noBugProject;
+    private String bugProject;
+    private String executeProjectType;
+    private String bugProjectType;
+
+    private String consultationProject;
+    private String consultationProjectType;
+
+    private String notUseProject;
+
+    private String userCardName;
+
+    private Integer expectedLossDay;
+
+    private String keyWord;
+
+    private Integer isPretriageCard;
+
+    private Integer indication1;
+    private Integer indication2;
+    private Integer indicationLevel;
+
+
+    public List<DUserTagDto> getUserTagInfo() {
+        return userTagInfo;
+    }
+
+    public void setUserTagInfo(List<DUserTagDto> userTagInfo) {
+        this.userTagInfo = userTagInfo;
+    }
+
+    public Integer getAppType() {
+        return appType;
+    }
+
+    public void setAppType(Integer appType) {
+        this.appType = appType;
+    }
+
+    public String getUserStatus() {
+        return userStatus;
+    }
+
+    public void setUserStatus(String userStatus) {
+        this.userStatus = userStatus;
+    }
+
+    public String getHisCorpUserId() {
+        return hisCorpUserId;
+    }
+
+    public void setHisCorpUserId(String hisCorpUserId) {
+        this.hisCorpUserId = hisCorpUserId;
+    }
+
+    public String getHisCorpUserName() {
+        return hisCorpUserName;
+    }
+
+    public void setHisCorpUserName(String hisCorpUserName) {
+        this.hisCorpUserName = hisCorpUserName;
+    }
+
+    public String getShopId() {
+        return shopId;
+    }
+
+    public void setShopId(String shopId) {
+        this.shopId = shopId;
+    }
+
+    public String getShopName() {
+        return shopName;
+    }
+
+    public void setShopName(String shopName) {
+        this.shopName = shopName;
+    }
+
+    public String getcIq() {
+        return cIq;
+    }
+
+    public void setcIq(String cIq) {
+        this.cIq = cIq;
+    }
+
+    public String getcStartTime() {
+        return cStartTime;
+    }
+
+    public void setcStartTime(String cStartTime) {
+        this.cStartTime = cStartTime;
+    }
+
+    public String getcEndTime() {
+        return cEndTime;
+    }
+
+    public void setcEndTime(String cEndTime) {
+        this.cEndTime = cEndTime;
+    }
+
+    public String getUserLevel() {
+        return userLevel;
+    }
+
+    public void setUserLevel(String userLevel) {
+        this.userLevel = userLevel;
+    }
+
+    public String getStartBirthDay() {
+        return startBirthDay;
+    }
+
+    public void setStartBirthDay(String startBirthDay) {
+        this.startBirthDay = startBirthDay;
+    }
+
+    public String getEndBirthDay() {
+        return endBirthDay;
+    }
+
+    public void setEndBirthDay(String endBirthDay) {
+        this.endBirthDay = endBirthDay;
+    }
+
+    public String getCreator() {
+        return creator;
+    }
+
+    public void setCreator(String creator) {
+        this.creator = creator;
+    }
+
+    public String getUserType() {
+        return userType;
+    }
+
+    public void setUserType(String userType) {
+        this.userType = userType;
+    }
+
+    public Integer getGender() {
+        return gender;
+    }
+
+    public void setGender(Integer gender) {
+        this.gender = gender;
+    }
+
+    public Integer getStartAge() {
+        return startAge;
+    }
+
+    public void setStartAge(Integer startAge) {
+        this.startAge = startAge;
+    }
+
+    public Integer getEndAge() {
+        return endAge;
+    }
+
+    public void setEndAge(Integer endAge) {
+        this.endAge = endAge;
+    }
+
+    public String getChannelType() {
+        return channelType;
+    }
+
+    public void setChannelType(String channelType) {
+        this.channelType = channelType;
+    }
+
+    public String getChannelId() {
+        return channelId;
+    }
+
+    public void setChannelId(String channelId) {
+        this.channelId = channelId;
+    }
+
+    public String getCuName() {
+        return cuName;
+    }
+
+    public void setCuName(String cuName) {
+        this.cuName = cuName;
+    }
+
+    public String getUserRole() {
+        return userRole;
+    }
+
+    public void setUserRole(String userRole) {
+        this.userRole = userRole;
+    }
+
+    public String getStartReturnVisitTime() {
+        return startReturnVisitTime;
+    }
+
+    public void setStartReturnVisitTime(String startReturnVisitTime) {
+        this.startReturnVisitTime = startReturnVisitTime;
+    }
+
+    public String getEndReturnVisitTime() {
+        return endReturnVisitTime;
+    }
+
+    public void setEndReturnVisitTime(String endReturnVisitTime) {
+        this.endReturnVisitTime = endReturnVisitTime;
+    }
+
+    public String getStartFirstTime() {
+        return startFirstTime;
+    }
+
+    public void setStartFirstTime(String startFirstTime) {
+        this.startFirstTime = startFirstTime;
+    }
+
+    public String getEndFirstTime() {
+        return endFirstTime;
+    }
+
+    public void setEndFirstTime(String endFirstTime) {
+        this.endFirstTime = endFirstTime;
+    }
+
+    public String getStartlatelyTime() {
+        return startlatelyTime;
+    }
+
+    public void setStartlatelyTime(String startlatelyTime) {
+        this.startlatelyTime = startlatelyTime;
+    }
+
+    public String getEndlatelyTime() {
+        return endlatelyTime;
+    }
+
+    public void setEndlatelyTime(String endlatelyTime) {
+        this.endlatelyTime = endlatelyTime;
+    }
+
+    public String getStartFirstPayTime() {
+        return startFirstPayTime;
+    }
+
+    public void setStartFirstPayTime(String startFirstPayTime) {
+        this.startFirstPayTime = startFirstPayTime;
+    }
+
+    public String getEndFirstPayTime() {
+        return endFirstPayTime;
+    }
+
+    public void setEndFirstPayTime(String endFirstPayTime) {
+        this.endFirstPayTime = endFirstPayTime;
+    }
+
+    public String getStartLastPayTime() {
+        return startLastPayTime;
+    }
+
+    public void setStartLastPayTime(String startLastPayTime) {
+        this.startLastPayTime = startLastPayTime;
+    }
+
+    public String getEndLastPayTime() {
+        return endLastPayTime;
+    }
+
+    public void setEndLastPayTime(String endLastPayTime) {
+        this.endLastPayTime = endLastPayTime;
+    }
+
+    public Integer getIsComeShop() {
+        return isComeShop;
+    }
+
+    public void setIsComeShop(Integer isComeShop) {
+        this.isComeShop = isComeShop;
+    }
+
+    public Integer getIsConsume() {
+        return isConsume;
+    }
+
+    public void setIsConsume(Integer isConsume) {
+        this.isConsume = isConsume;
+    }
+
+    public Integer getIsBindCRMTime() {
+        return isBindCRMTime;
+    }
+
+    public void setIsBindCRMTime(Integer isBindCRMTime) {
+        this.isBindCRMTime = isBindCRMTime;
+    }
+
+    public Integer getIsBindSTTime() {
+        return isBindSTTime;
+    }
+
+    public void setIsBindSTTime(Integer isBindSTTime) {
+        this.isBindSTTime = isBindSTTime;
+    }
+
+    public Integer getIsBindGZHTime() {
+        return isBindGZHTime;
+    }
+
+    public void setIsBindGZHTime(Integer isBindGZHTime) {
+        this.isBindGZHTime = isBindGZHTime;
+    }
+
+    public String getCountry() {
+        return country;
+    }
+
+    public void setCountry(String country) {
+        this.country = country;
+    }
+
+    public String getProvince() {
+        return province;
+    }
+
+    public void setProvince(String province) {
+        this.province = province;
+    }
+
+    public String getCity() {
+        return city;
+    }
+
+    public void setCity(String city) {
+        this.city = city;
+    }
+
+    public String getArea() {
+        return area;
+    }
+
+    public void setArea(String area) {
+        this.area = area;
+    }
+
+    public String getInviteeId() {
+        return inviteeId;
+    }
+
+    public void setInviteeId(String inviteeId) {
+        this.inviteeId = inviteeId;
+    }
+
+    public String getInviteeName() {
+        return inviteeName;
+    }
+
+    public void setInviteeName(String inviteeName) {
+        this.inviteeName = inviteeName;
+    }
+
+    public String getTmkName() {
+        return tmkName;
+    }
+
+    public void setTmkName(String tmkName) {
+        this.tmkName = tmkName;
+    }
+
+    public String getDoctorNme() {
+        return doctorNme;
+    }
+
+    public void setDoctorNme(String doctorNme) {
+        this.doctorNme = doctorNme;
+    }
+
+    public String getNoBugProject() {
+        return noBugProject;
+    }
+
+    public void setNoBugProject(String noBugProject) {
+        this.noBugProject = noBugProject;
+    }
+
+    public String getBugProject() {
+        return bugProject;
+    }
+
+    public void setBugProject(String bugProject) {
+        this.bugProject = bugProject;
+    }
+
+    public String getExecuteProjectType() {
+        return executeProjectType;
+    }
+
+    public void setExecuteProjectType(String executeProjectType) {
+        this.executeProjectType = executeProjectType;
+    }
+
+    public String getBugProjectType() {
+        return bugProjectType;
+    }
+
+    public void setBugProjectType(String bugProjectType) {
+        this.bugProjectType = bugProjectType;
+    }
+
+    public String getConsultationProject() {
+        return consultationProject;
+    }
+
+    public void setConsultationProject(String consultationProject) {
+        this.consultationProject = consultationProject;
+    }
+
+    public String getConsultationProjectType() {
+        return consultationProjectType;
+    }
+
+    public void setConsultationProjectType(String consultationProjectType) {
+        this.consultationProjectType = consultationProjectType;
+    }
+
+    public String getNotUseProject() {
+        return notUseProject;
+    }
+
+    public void setNotUseProject(String notUseProject) {
+        this.notUseProject = notUseProject;
+    }
+
+    public String getUserCardName() {
+        return userCardName;
+    }
+
+    public void setUserCardName(String userCardName) {
+        this.userCardName = userCardName;
+    }
+
+    public Integer getExpectedLossDay() {
+        return expectedLossDay;
+    }
+
+    public void setExpectedLossDay(Integer expectedLossDay) {
+        this.expectedLossDay = expectedLossDay;
+    }
+
+    public String getKeyWord() {
+        return keyWord;
+    }
+
+    public void setKeyWord(String keyWord) {
+        this.keyWord = keyWord;
+    }
+
+    public Integer getIsPretriageCard() {
+        return isPretriageCard;
+    }
+
+    public void setIsPretriageCard(Integer isPretriageCard) {
+        this.isPretriageCard = isPretriageCard;
+    }
+
+    public Integer getIndication1() {
+        return indication1;
+    }
+
+    public void setIndication1(Integer indication1) {
+        this.indication1 = indication1;
+    }
+
+    public Integer getIndication2() {
+        return indication2;
+    }
+
+    public void setIndication2(Integer indication2) {
+        this.indication2 = indication2;
+    }
+
+    public Integer getIndicationLevel() {
+        return indicationLevel;
+    }
+
+    public void setIndicationLevel(Integer indicationLevel) {
+        this.indicationLevel = indicationLevel;
+    }
+}
diff --git a/phis-download-feign/src/main/java/com/hz/his/dto/user/DUserTagDto.java b/phis-download-feign/src/main/java/com/hz/his/dto/user/DUserTagDto.java
new file mode 100644
index 0000000..67fab6d
--- /dev/null
+++ b/phis-download-feign/src/main/java/com/hz/his/dto/user/DUserTagDto.java
@@ -0,0 +1,17 @@
+package com.hz.his.dto.user;
+
+
+import com.alibaba.fastjson.JSONObject;
+import lombok.Data;
+
+import java.util.List;
+
+/**
+ * 鐢ㄦ埛
+ **/
+@Data
+public class DUserTagDto {
+    private String tagName;
+    private String tagTypeId;
+
+}

--
Gitblit v1.8.0