Merge remote-tracking branch 'origin/master'

master
MKing 2023-10-24 15:57:58 +08:00
commit 1b5443217c
6 changed files with 519 additions and 5 deletions

View File

@ -20,7 +20,7 @@ public class AdvisoryCollection {
/**
* id
*/
private Integer userId;
private Long userId;
public Integer getAdvisoryCollectionId() {
return advisoryCollectionId;
@ -38,18 +38,18 @@ public class AdvisoryCollection {
this.consultationDetailsId = consultationDetailsId;
}
public Integer getUserId() {
public Long getUserId() {
return userId;
}
public void setUserId(Integer userId) {
public void setUserId(Long userId) {
this.userId = userId;
}
public AdvisoryCollection() {
}
public AdvisoryCollection(Integer advisoryCollectionId, Integer consultationDetailsId, Integer userId) {
public AdvisoryCollection(Integer advisoryCollectionId, Integer consultationDetailsId, Long userId) {
this.advisoryCollectionId = advisoryCollectionId;
this.consultationDetailsId = consultationDetailsId;
this.userId = userId;

View File

@ -19,6 +19,11 @@ public class RegistrationInformation {
*/
private Integer userId;
/**
* id
*/
private Integer userId;
/**
*
*/
@ -79,6 +84,31 @@ public class RegistrationInformation {
*/
private Integer registrationInformationMedicStatus;
public RegistrationInformation(Integer registrationInformationId, Integer userId, String realName, String affiliatedHospital, Integer medicalDepartmentId, Integer professionalTitleDoctorId, String personalResume, String areaExpertise, Date registrationTime, String numberPatientsServed, BigDecimal consultingPrice, Integer praise, Integer registrationInformationExamineStatus, Integer registrationInformationMedicStatus) {
this.registrationInformationId = registrationInformationId;
this.userId = userId;
this.realName = realName;
this.affiliatedHospital = affiliatedHospital;
this.medicalDepartmentId = medicalDepartmentId;
this.professionalTitleDoctorId = professionalTitleDoctorId;
this.personalResume = personalResume;
this.areaExpertise = areaExpertise;
this.registrationTime = registrationTime;
this.numberPatientsServed = numberPatientsServed;
this.consultingPrice = consultingPrice;
this.praise = praise;
this.registrationInformationExamineStatus = registrationInformationExamineStatus;
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
/**
* gettersetter
*/

View File

@ -74,10 +74,42 @@ public class User {
private BigDecimal userMoney;
/**
*
*
*/
private String invitationCode;
/**
* 1 2
* @return
*/
private Integer differentialState;
public Integer getDifferentialState() {
return differentialState;
}
public void setDifferentialState(Integer differentialState) {
this.differentialState = differentialState;
}
public User(Integer userId, String username, String password, String userEmail, String userPhone, String userAvatar, String userSex, String userSign, Date registrationTime, Integer bindWechatStatus, Integer realNameAuthenticationStatus, Integer bindBankCardStatus, BigDecimal userMoney, String invitationCode, Integer differentialState) {
this.userId = userId;
this.username = username;
this.password = password;
this.userEmail = userEmail;
this.userPhone = userPhone;
this.userAvatar = userAvatar;
this.userSex = userSex;
this.userSign = userSign;
this.registrationTime = registrationTime;
this.bindWechatStatus = bindWechatStatus;
this.realNameAuthenticationStatus = realNameAuthenticationStatus;
this.bindBankCardStatus = bindBankCardStatus;
this.userMoney = userMoney;
this.invitationCode = invitationCode;
this.differentialState = differentialState;
}
public Integer getUserId() {
return userId;
}

View File

@ -0,0 +1,20 @@
package com.four.common.duck.request;
import lombok.Data;
/**
* @program: four-common-duck
* @author: spc
* @create: 2023-10-21 08:43
* @Version 1.0
**/
@Data
public class DetailsPatientCircleRequest {
/*
*/
private String name;
}

View File

@ -0,0 +1,214 @@
package com.four.common.duck.request;
import java.math.BigDecimal;
import java.util.Date;
/**
* @author: tongCheng
* @Package: four-common-duck
* @ClassName: RechargeWithdrawCashRequest
* @date: 2023-10-20 20:25
**/
public class RechargeWithdrawCashRequest {
/**
* +id
*/
private Integer rechargeWithdrawCashId;
/**
* +id
*/
private Integer userId;
/**
* +
*/
private BigDecimal money;
/**
* +
*/
private Date time;
/**
* 1: 2:+
*/
private Integer status;
/**
* id
*/
private Integer certifiedBankCardId;
/**
*
*/
private String userName;
/**
* 1 2
*/
private Integer bindWechatStatus;
/**
* 1 2
*/
private Integer realNameAuthenticationStatus;
/**
* 1 2
*/
private Integer bindBankCardStatus;
/**
*
*/
private BigDecimal userMoney;
/**
*
*/
private Integer idNumber;
/**
*
*/
private String bankName;
/**
*
*/
private String bankCardNumber;
public Integer getRechargeWithdrawCashId() {
return rechargeWithdrawCashId;
}
public void setRechargeWithdrawCashId(Integer rechargeWithdrawCashId) {
this.rechargeWithdrawCashId = rechargeWithdrawCashId;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public BigDecimal getMoney() {
return money;
}
public void setMoney(BigDecimal money) {
this.money = money;
}
public Date getTime() {
return time;
}
public void setTime(Date time) {
this.time = time;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Integer getCertifiedBankCardId() {
return certifiedBankCardId;
}
public void setCertifiedBankCardId(Integer certifiedBankCardId) {
this.certifiedBankCardId = certifiedBankCardId;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public Integer getBindWechatStatus() {
return bindWechatStatus;
}
public void setBindWechatStatus(Integer bindWechatStatus) {
this.bindWechatStatus = bindWechatStatus;
}
public Integer getRealNameAuthenticationStatus() {
return realNameAuthenticationStatus;
}
public void setRealNameAuthenticationStatus(Integer realNameAuthenticationStatus) {
this.realNameAuthenticationStatus = realNameAuthenticationStatus;
}
public Integer getBindBankCardStatus() {
return bindBankCardStatus;
}
public void setBindBankCardStatus(Integer bindBankCardStatus) {
this.bindBankCardStatus = bindBankCardStatus;
}
public BigDecimal getUserMoney() {
return userMoney;
}
public void setUserMoney(BigDecimal userMoney) {
this.userMoney = userMoney;
}
public Integer getIdNumber() {
return idNumber;
}
public void setIdNumber(Integer idNumber) {
this.idNumber = idNumber;
}
public String getBankName() {
return bankName;
}
public void setBankName(String bankName) {
this.bankName = bankName;
}
public String getBankCardNumber() {
return bankCardNumber;
}
public void setBankCardNumber(String bankCardNumber) {
this.bankCardNumber = bankCardNumber;
}
public RechargeWithdrawCashRequest() {
}
public RechargeWithdrawCashRequest(Integer rechargeWithdrawCashId, Integer userId, BigDecimal money, Date time, Integer status, Integer certifiedBankCardId, String userName, Integer bindWechatStatus, Integer realNameAuthenticationStatus, Integer bindBankCardStatus, BigDecimal userMoney, Integer idNumber, String bankName, String bankCardNumber) {
this.rechargeWithdrawCashId = rechargeWithdrawCashId;
this.userId = userId;
this.money = money;
this.time = time;
this.status = status;
this.certifiedBankCardId = certifiedBankCardId;
this.userName = userName;
this.bindWechatStatus = bindWechatStatus;
this.realNameAuthenticationStatus = realNameAuthenticationStatus;
this.bindBankCardStatus = bindBankCardStatus;
this.userMoney = userMoney;
this.idNumber = idNumber;
this.bankName = bankName;
this.bankCardNumber = bankCardNumber;
}
}

View File

@ -0,0 +1,218 @@
package com.four.common.duck.response;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
/**
* @program: four-common-duck
* @author: spc
* @create: 2023-10-22 20:02
* @Version 1.0
**/
@Data
public class DetailsPatientCircleDetailCollection {
/**
* id
*/
private Integer detailsPatientCircleId;
/**
*
*/
private String title;
/**
* id
*/
private Integer publisherId;
/**
* id
*/
private Integer diseaseId;
/**
* id
*/
private Integer departmentId;
/**
*
*/
private String detailsSymptoms;
/**
*
*/
private Date treatmentExperienceStartTime;
/**
*
*/
private Date treatmentExperienceEndTime;
/**
*
*/
private String treatmentExperience;
/**
*
*/
private String relatedPictures;
/**
*
*/
private Integer rewardAmount;
/**
*
*/
private Integer collectionQuantity;
/**
*
*/
private Integer numberComments;
//--------------------------------------------------------
//--------------------------------------------------------
//--------------------------------------------------------
/**
* +id
*/
private Integer id;
/**
*
*/
private String name;
/**
* id
*/
private Integer pid;
//-----------------------------------------------------------
//-----------------------------------------------------------
//-----------------------------------------------------------
/**
* id
*/
private Integer detailCollectionId;
/**
*
*/
private Date collectionTime;
/**
*
*/
private String collector;
//------------------------------------------------------------
//------------------------------------------------------------
//------------------------------------------------------------
/**
* id
*/
private Integer userId;
/**
*
*/
private String username;
/**
*
*/
private String password;
/**
*
*/
private String userEmail;
/**
*
*/
private String userPhone;
/**
*
*/
private String userAvatar;
/**
*
*/
private String userSex;
/**
*
*/
private String userSign;
/**
*
*/
private Date registrationTime;
/**
* 1 2
*/
private Integer bindWechatStatus;
/**
* 1 2
*/
private Integer realNameAuthenticationStatus;
/**
* 1 2
*/
private Integer bindBankCardStatus;
/**
*
*/
private BigDecimal userMoney;
/**
*
*/
private String invitationCode;
/**
* 1 2
* @return
*/
private Integer differentialState;
//--------------------------------------------
//--------------------------------------------
//--------------------------------------------
/**
* id
*/
private Integer likeMockId;
/**
* id
*/
private Integer likeMockPeopleId;
/**
*
*/
private Date thumbsTime;
/**
* 12
*/
private String likeMockStatus;
}