初始化

master
童成 2023-10-20 13:50:03 +08:00
commit 4ac92b5bf0
34 changed files with 3245 additions and 0 deletions

46
.gitignore vendored 100644
View File

@ -0,0 +1,46 @@
######################################################################
# Build Tools
.gradle
/build/
!gradle/wrapper/gradle-wrapper.jar
target/
!.mvn/wrapper/maven-wrapper.jar
######################################################################
# IDE
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### JRebel ###
rebel.xml
### NetBeans ###
nbproject/private/
build/*
nbbuild/
dist/
nbdist/
.nb-gradle/
######################################################################
# Others
*.log
*.xml.versionsBackup
*.swp
!*/build/*.java
!*/build/*.html
!*/build/*.xml

37
pom.xml 100644
View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<groupId>com.four</groupId>
<artifactId>four-common</artifactId>
<version>3.6.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>four-common-duck</artifactId>
<version>3.6.3</version>
<description>
four-common-duck维度健康模块
</description>
<dependencies>
<dependency>
<groupId>com.four</groupId>
<artifactId>four-common-core</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,108 @@
package com.four.common.duck;
import com.four.common.core.constant.Constants;
import java.io.Serializable;
/**
*
*
* @author tongcheng
*/
public class Result<T> implements Serializable
{
private static final long serialVersionUID = 1L;
/** 成功 */
public static final int SUCCESS = Constants.SUCCESS;
/** 失败 */
public static final int ERROR = Constants.FAIL;
private int code;
private String msg;
private T data;
public static <T> Result<T> success()
{
return restResult(null, SUCCESS, null);
}
public static <T> Result<T> success(T data)
{
return restResult(data, SUCCESS, null);
}
public static <T> Result<T> success(T data, String msg)
{
return restResult(data, SUCCESS, msg);
}
public static <T> Result<T> error()
{
return restResult(null, ERROR, null);
}
public static <T> Result<T> error(String msg)
{
return restResult(null, ERROR, msg);
}
public static <T> Result<T> error(T data)
{
return restResult(data, ERROR, null);
}
public static <T> Result<T> error(T data, String msg)
{
return restResult(data, ERROR, msg);
}
public static <T> Result<T> error(int code, String msg)
{
return restResult(null, code, msg);
}
private static <T> Result<T> restResult(T data, int code, String msg)
{
Result<T> apiResult = new Result<>();
apiResult.setCode(code);
apiResult.setData(data);
apiResult.setMsg(msg);
return apiResult;
}
public int getCode()
{
return code;
}
public void setCode(int code)
{
this.code = code;
}
public String getMsg()
{
return msg;
}
public void setMsg(String msg)
{
this.msg = msg;
}
public T getData()
{
return data;
}
public void setData(T data)
{
this.data = data;
}
}

View File

@ -0,0 +1,71 @@
package com.four.common.duck.communitypatients;
import java.util.Date;
/**
*
*/
public class DetailCollection {
/**
* id
*/
private Integer detailCollectionId;
/**
* id
*/
private Integer detailsPatientCircleId;
/**
*
*/
private Date collectionTime;
/**
*
*/
private String collector;
public Integer getDetailCollectionId() {
return detailCollectionId;
}
public void setDetailCollectionId(Integer detailCollectionId) {
this.detailCollectionId = detailCollectionId;
}
public Integer getDetailsPatientCircleId() {
return detailsPatientCircleId;
}
public void setDetailsPatientCircleId(Integer detailsPatientCircleId) {
this.detailsPatientCircleId = detailsPatientCircleId;
}
public Date getCollectionTime() {
return collectionTime;
}
public void setCollectionTime(Date collectionTime) {
this.collectionTime = collectionTime;
}
public String getCollector() {
return collector;
}
public void setCollector(String collector) {
this.collector = collector;
}
public DetailCollection() {
}
public DetailCollection(Integer detailCollectionId, Integer detailsPatientCircleId, Date collectionTime, String collector) {
this.detailCollectionId = detailCollectionId;
this.detailsPatientCircleId = detailsPatientCircleId;
this.collectionTime = collectionTime;
this.collector = collector;
}
}

View File

@ -0,0 +1,114 @@
package com.four.common.duck.communitypatients;
import java.util.Date;
/**
*
*/
public class DetailedReview {
/**
* id
*/
private Integer detailedReviewId;
/**
* id
*/
private Integer detailsPatientCircleId;
/**
*
*/
private Date commentTime;
/**
* id
*/
private Integer reviewerId;
/**
*
*/
private Integer numberLikes;
/**
*
*/
private Integer tauntCount;
/***
*
* @return
*/
private String name;
public DetailedReview(Integer detailedReviewId, Integer detailsPatientCircleId, Date commentTime, Integer reviewerId, Integer numberLikes, Integer tauntCount, String name) {
this.detailedReviewId = detailedReviewId;
this.detailsPatientCircleId = detailsPatientCircleId;
this.commentTime = commentTime;
this.reviewerId = reviewerId;
this.numberLikes = numberLikes;
this.tauntCount = tauntCount;
this.name = name;
}
public Integer getDetailedReviewId() {
return detailedReviewId;
}
public void setDetailedReviewId(Integer detailedReviewId) {
this.detailedReviewId = detailedReviewId;
}
public Integer getDetailsPatientCircleId() {
return detailsPatientCircleId;
}
public void setDetailsPatientCircleId(Integer detailsPatientCircleId) {
this.detailsPatientCircleId = detailsPatientCircleId;
}
public Date getCommentTime() {
return commentTime;
}
public void setCommentTime(Date commentTime) {
this.commentTime = commentTime;
}
public Integer getReviewerId() {
return reviewerId;
}
public void setReviewerId(Integer reviewerId) {
this.reviewerId = reviewerId;
}
public Integer getNumberLikes() {
return numberLikes;
}
public void setNumberLikes(Integer numberLikes) {
this.numberLikes = numberLikes;
}
public Integer getTauntCount() {
return tauntCount;
}
public void setTauntCount(Integer tauntCount) {
this.tauntCount = tauntCount;
}
public DetailedReview() {
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}

View File

@ -0,0 +1,197 @@
package com.four.common.duck.communitypatients;
import java.util.Date;
/**
*
*/
public class DetailsPatientCircle {
/**
* 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;
public DetailsPatientCircle() {
}
public DetailsPatientCircle(Integer detailsPatientCircleId, String title, Integer publisherId, Integer diseaseId, Integer departmentId, String detailsSymptoms, Date treatmentExperienceStartTime, Date treatmentExperienceEndTime, String treatmentExperience, String relatedPictures, Integer rewardAmount, Integer collectionQuantity, Integer numberComments) {
this.detailsPatientCircleId = detailsPatientCircleId;
this.title = title;
this.publisherId = publisherId;
this.diseaseId = diseaseId;
this.departmentId = departmentId;
this.detailsSymptoms = detailsSymptoms;
this.treatmentExperienceStartTime = treatmentExperienceStartTime;
this.treatmentExperienceEndTime = treatmentExperienceEndTime;
this.treatmentExperience = treatmentExperience;
this.relatedPictures = relatedPictures;
this.rewardAmount = rewardAmount;
this.collectionQuantity = collectionQuantity;
this.numberComments = numberComments;
}
public Integer getDetailsPatientCircleId() {
return detailsPatientCircleId;
}
public void setDetailsPatientCircleId(Integer detailsPatientCircleId) {
this.detailsPatientCircleId = detailsPatientCircleId;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public Integer getPublisherId() {
return publisherId;
}
public void setPublisherId(Integer publisherId) {
this.publisherId = publisherId;
}
public Integer getDiseaseId() {
return diseaseId;
}
public void setDiseaseId(Integer diseaseId) {
this.diseaseId = diseaseId;
}
public Integer getDepartmentId() {
return departmentId;
}
public void setDepartmentId(Integer departmentId) {
this.departmentId = departmentId;
}
public String getDetailsSymptoms() {
return detailsSymptoms;
}
public void setDetailsSymptoms(String detailsSymptoms) {
this.detailsSymptoms = detailsSymptoms;
}
public Date getTreatmentExperienceStartTime() {
return treatmentExperienceStartTime;
}
public void setTreatmentExperienceStartTime(Date treatmentExperienceStartTime) {
this.treatmentExperienceStartTime = treatmentExperienceStartTime;
}
public Date getTreatmentExperienceEndTime() {
return treatmentExperienceEndTime;
}
public void setTreatmentExperienceEndTime(Date treatmentExperienceEndTime) {
this.treatmentExperienceEndTime = treatmentExperienceEndTime;
}
public String getTreatmentExperience() {
return treatmentExperience;
}
public void setTreatmentExperience(String treatmentExperience) {
this.treatmentExperience = treatmentExperience;
}
public String getRelatedPictures() {
return relatedPictures;
}
public void setRelatedPictures(String relatedPictures) {
this.relatedPictures = relatedPictures;
}
public Integer getRewardAmount() {
return rewardAmount;
}
public void setRewardAmount(Integer rewardAmount) {
this.rewardAmount = rewardAmount;
}
public Integer getCollectionQuantity() {
return collectionQuantity;
}
public void setCollectionQuantity(Integer collectionQuantity) {
this.collectionQuantity = collectionQuantity;
}
public Integer getNumberComments() {
return numberComments;
}
public void setNumberComments(Integer numberComments) {
this.numberComments = numberComments;
}
}

View File

@ -0,0 +1,139 @@
package com.four.common.duck.communitypatients;
/**
*
*/
public class DrugDetails {
/**
* id
*/
private Integer drugDetailsId;
/**
* +id
*/
private Integer id;
/**
*
*/
private String pharmaceuticalIngredient;
/**
*
*/
private String drugContraindication;
/**
*
*/
private String functionalIndications;
/**
*
*/
private String usageDosage;
/**
*
*/
private String drugCharacter;
/**
*
*/
private String packingSpecification;
/**
*
*/
private String adverseReaction;
public Integer getDrugDetailsId() {
return drugDetailsId;
}
public void setDrugDetailsId(Integer drugDetailsId) {
this.drugDetailsId = drugDetailsId;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getPharmaceuticalIngredient() {
return pharmaceuticalIngredient;
}
public void setPharmaceuticalIngredient(String pharmaceuticalIngredient) {
this.pharmaceuticalIngredient = pharmaceuticalIngredient;
}
public String getDrugContraindication() {
return drugContraindication;
}
public void setDrugContraindication(String drugContraindication) {
this.drugContraindication = drugContraindication;
}
public String getFunctionalIndications() {
return functionalIndications;
}
public void setFunctionalIndications(String functionalIndications) {
this.functionalIndications = functionalIndications;
}
public String getUsageDosage() {
return usageDosage;
}
public void setUsageDosage(String usageDosage) {
this.usageDosage = usageDosage;
}
public String getDrugCharacter() {
return drugCharacter;
}
public void setDrugCharacter(String drugCharacter) {
this.drugCharacter = drugCharacter;
}
public String getPackingSpecification() {
return packingSpecification;
}
public void setPackingSpecification(String packingSpecification) {
this.packingSpecification = packingSpecification;
}
public String getAdverseReaction() {
return adverseReaction;
}
public void setAdverseReaction(String adverseReaction) {
this.adverseReaction = adverseReaction;
}
public DrugDetails(Integer drugDetailsId, Integer id, String pharmaceuticalIngredient, String drugContraindication, String functionalIndications, String usageDosage, String drugCharacter, String packingSpecification, String adverseReaction) {
this.drugDetailsId = drugDetailsId;
this.id = id;
this.pharmaceuticalIngredient = pharmaceuticalIngredient;
this.drugContraindication = drugContraindication;
this.functionalIndications = functionalIndications;
this.usageDosage = usageDosage;
this.drugCharacter = drugCharacter;
this.packingSpecification = packingSpecification;
this.adverseReaction = adverseReaction;
}
public DrugDetails() {
}
}

View File

@ -0,0 +1,71 @@
package com.four.common.duck.communitypatients;
import java.util.Date;
/**
*
*/
public class LikeMock {
/**
* id
*/
private Integer likeMockId;
/**
* id
*/
private Integer likeMockPeopleId;
/**
*
*/
private Date thumbsTime;
/**
* 12
*/
private String likeMockStatus;
public Integer getLikeMockId() {
return likeMockId;
}
public void setLikeMockId(Integer likeMockId) {
this.likeMockId = likeMockId;
}
public Integer getLikeMockPeopleId() {
return likeMockPeopleId;
}
public void setLikeMockPeopleId(Integer likeMockPeopleId) {
this.likeMockPeopleId = likeMockPeopleId;
}
public Date getThumbsTime() {
return thumbsTime;
}
public void setThumbsTime(Date thumbsTime) {
this.thumbsTime = thumbsTime;
}
public String getLikeMockStatus() {
return likeMockStatus;
}
public void setLikeMockStatus(String likeMockStatus) {
this.likeMockStatus = likeMockStatus;
}
public LikeMock() {
}
public LikeMock(Integer likeMockId, Integer likeMockPeopleId, Date thumbsTime, String likeMockStatus) {
this.likeMockId = likeMockId;
this.likeMockPeopleId = likeMockPeopleId;
this.thumbsTime = thumbsTime;
this.likeMockStatus = likeMockStatus;
}
}

View File

@ -0,0 +1,97 @@
package com.four.common.duck.communitypatients;
/**
*
*/
public class PathologicalDetails {
/**
* id
*/
private Integer detailsSymptomsId;
/**
* +id
*/
private Integer id;
/**
*
*/
private String pathology;
/**
*
*/
private String symptom;
/**
*
*/
private String prosCons;
/**
* 西
*/
private String heal;
public PathologicalDetails() {
}
public PathologicalDetails(Integer detailsSymptomsId, Integer id, String pathology, String symptom, String prosCons, String heal) {
this.detailsSymptomsId = detailsSymptomsId;
this.id = id;
this.pathology = pathology;
this.symptom = symptom;
this.prosCons = prosCons;
this.heal = heal;
}
public Integer getDetailsSymptomsId() {
return detailsSymptomsId;
}
public void setDetailsSymptomsId(Integer detailsSymptomsId) {
this.detailsSymptomsId = detailsSymptomsId;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getPathology() {
return pathology;
}
public void setPathology(String pathology) {
this.pathology = pathology;
}
public String getSymptom() {
return symptom;
}
public void setSymptom(String symptom) {
this.symptom = symptom;
}
public String getProsCons() {
return prosCons;
}
public void setProsCons(String prosCons) {
this.prosCons = prosCons;
}
public String getHeal() {
return heal;
}
public void setHeal(String heal) {
this.heal = heal;
}
}

View File

@ -0,0 +1,83 @@
package com.four.common.duck.communitypatients;
/**
* +
*/
public class SymptomsDrugs {
/**
* +id
*/
private Integer id;
/**
*
*/
private String name;
private String aname;
private String bname;
public String getAname() {
return aname;
}
public void setAname(String aname) {
this.aname = aname;
}
public String getBname() {
return bname;
}
public void setBname(String bname) {
this.bname = bname;
}
/**
* id
*/
private Integer pid;
/**
*
*/
private String img;
public SymptomsDrugs() {
}
public SymptomsDrugs(Integer id, String name,String aname,String bname, Integer pid, String img) {
this.id = id;
this.name = name;
this.pid = pid;
this.img = img;
this.aname = aname;
this.bname = bname;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getPid() {
return pid;
}
public void setPid(Integer pid) {
this.pid = pid;
}
}

View File

@ -0,0 +1,57 @@
package com.four.common.duck.domain;
import java.util.Date;
/**
*
*/
public class AcceptedProposal {
/**
* id
*/
private Integer acceptedProposalId;
/**
* id
*/
private Integer detailedReviewId;
/**
*
*/
private Date adoptionTime;
public AcceptedProposal() {
}
public AcceptedProposal(Integer acceptedProposalId, Integer detailedReviewId, Date adoptionTime) {
this.acceptedProposalId = acceptedProposalId;
this.detailedReviewId = detailedReviewId;
this.adoptionTime = adoptionTime;
}
public Integer getAcceptedProposalId() {
return acceptedProposalId;
}
public void setAcceptedProposalId(Integer acceptedProposalId) {
this.acceptedProposalId = acceptedProposalId;
}
public Integer getDetailedReviewId() {
return detailedReviewId;
}
public void setDetailedReviewId(Integer detailedReviewId) {
this.detailedReviewId = detailedReviewId;
}
public Date getAdoptionTime() {
return adoptionTime;
}
public void setAdoptionTime(Date adoptionTime) {
this.adoptionTime = adoptionTime;
}
}

View File

@ -0,0 +1,139 @@
package com.four.common.duck.domain;
/**
*
*/
public class CertifiedBankCard {
/**
* id
*/
private Integer certifiedBankCardId;
/**
* id
*/
private Integer userId;
/**
*
*/
private String realName;
/**
*
*/
private String realGender;
/**
*
*/
private String trueNativePlace;
/**
*
*/
private Integer idNumber;
/**
*
*/
private String bankName;
/**
*
*/
private String bankCardNumber;
/**
* 1 2
*/
private Integer certifiedBankCardStatus;
public CertifiedBankCard() {
}
public CertifiedBankCard(Integer certifiedBankCardId, Integer userId, String realName, String realGender, String trueNativePlace, Integer idNumber, String bankName, String bankCardNumber, Integer certifiedBankCardStatus) {
this.certifiedBankCardId = certifiedBankCardId;
this.userId = userId;
this.realName = realName;
this.realGender = realGender;
this.trueNativePlace = trueNativePlace;
this.idNumber = idNumber;
this.bankName = bankName;
this.bankCardNumber = bankCardNumber;
this.certifiedBankCardStatus = certifiedBankCardStatus;
}
public Integer getCertifiedBankCardId() {
return certifiedBankCardId;
}
public void setCertifiedBankCardId(Integer certifiedBankCardId) {
this.certifiedBankCardId = certifiedBankCardId;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public String getRealName() {
return realName;
}
public void setRealName(String realName) {
this.realName = realName;
}
public String getRealGender() {
return realGender;
}
public void setRealGender(String realGender) {
this.realGender = realGender;
}
public String getTrueNativePlace() {
return trueNativePlace;
}
public void setTrueNativePlace(String trueNativePlace) {
this.trueNativePlace = trueNativePlace;
}
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 Integer getCertifiedBankCardStatus() {
return certifiedBankCardStatus;
}
public void setCertifiedBankCardStatus(Integer certifiedBankCardStatus) {
this.certifiedBankCardStatus = certifiedBankCardStatus;
}
}

View File

@ -0,0 +1,99 @@
package com.four.common.duck.domain;
import java.util.Date;
/**
*
*/
public class ConsultationRecord {
/**
* id
*/
private Integer consultationRecordId;
/**
*
*/
private Date consultationTime;
/**
* id
*/
private Integer consultantId;
/**
*
*/
private String consultationContent;
/**
* id
*/
private Integer registrationInformationId;
/**
*
*/
private String replyContent;
public Integer getConsultationRecordId() {
return consultationRecordId;
}
public ConsultationRecord() {
}
public ConsultationRecord(Integer consultationRecordId, Date consultationTime, Integer consultantId, String consultationContent, Integer registrationInformationId, String replyContent) {
this.consultationRecordId = consultationRecordId;
this.consultationTime = consultationTime;
this.consultantId = consultantId;
this.consultationContent = consultationContent;
this.registrationInformationId = registrationInformationId;
this.replyContent = replyContent;
}
public void setConsultationRecordId(Integer consultationRecordId) {
this.consultationRecordId = consultationRecordId;
}
public Date getConsultationTime() {
return consultationTime;
}
public void setConsultationTime(Date consultationTime) {
this.consultationTime = consultationTime;
}
public Integer getConsultantId() {
return consultantId;
}
public void setConsultantId(Integer consultantId) {
this.consultantId = consultantId;
}
public String getConsultationContent() {
return consultationContent;
}
public void setConsultationContent(String consultationContent) {
this.consultationContent = consultationContent;
}
public Integer getRegistrationInformationId() {
return registrationInformationId;
}
public void setRegistrationInformationId(Integer registrationInformationId) {
this.registrationInformationId = registrationInformationId;
}
public String getReplyContent() {
return replyContent;
}
public void setReplyContent(String replyContent) {
this.replyContent = replyContent;
}
}

View File

@ -0,0 +1,71 @@
package com.four.common.duck.domain;
import java.util.Date;
/**
*
*/
public class GiftRecord {
/**
* id
*/
private Integer giftRecordId;
/**
* id
*/
private Integer giverId;
/**
* id
*/
private Integer giftId;
/**
*
*/
private Date giftGivingTime;
public GiftRecord() {
}
public GiftRecord(Integer giftRecordId, Integer giverId, Integer giftId, Date giftGivingTime) {
this.giftRecordId = giftRecordId;
this.giverId = giverId;
this.giftId = giftId;
this.giftGivingTime = giftGivingTime;
}
public Integer getGiftRecordId() {
return giftRecordId;
}
public void setGiftRecordId(Integer giftRecordId) {
this.giftRecordId = giftRecordId;
}
public Integer getGiverId() {
return giverId;
}
public void setGiverId(Integer giverId) {
this.giverId = giverId;
}
public Integer getGiftId() {
return giftId;
}
public void setGiftId(Integer giftId) {
this.giftId = giftId;
}
public Date getGiftGivingTime() {
return giftGivingTime;
}
public void setGiftGivingTime(Date giftGivingTime) {
this.giftGivingTime = giftGivingTime;
}
}

View File

@ -0,0 +1,100 @@
package com.four.common.duck.domain;
import java.math.BigDecimal;
import java.util.Date;
/**
* +
*/
public class RechargeWithdrawCash {
/**
* +id
*/
private Integer rechargeWithdrawCashId;
/**
* +id
*/
private Integer userId;
/**
* +
*/
private BigDecimal money;
/**
* +
*/
private Date time;
/**
* 1: 2:+
*/
private Integer status;
/**
* id
*/
private Integer certifiedBankCardId;
public Integer getRechargeWithdrawCashId() {
return rechargeWithdrawCashId;
}
public RechargeWithdrawCash() {
}
public RechargeWithdrawCash(Integer rechargeWithdrawCashId, Integer userId, BigDecimal money, Date time, Integer status, Integer certifiedBankCardId) {
this.rechargeWithdrawCashId = rechargeWithdrawCashId;
this.userId = userId;
this.money = money;
this.time = time;
this.status = status;
this.certifiedBankCardId = certifiedBankCardId;
}
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;
}
}

View File

@ -0,0 +1,111 @@
package com.four.common.duck.domain;
/**
*
*/
public class Sign {
/**
* id
*/
private Integer signId;
/**
* 1 2
*/
private Integer signStatus;
/**
* 1 2
*/
private Integer firstPatientCircle;
/**
* 1 2
*/
private Integer firstReviewPatientCircle;
/**
* 1 2
*/
private Integer perfectInformation;
/**
* 1 2
*/
private Integer healthEvaluation;
/**
* id:
*/
private Integer userId;
public Integer getSignId() {
return signId;
}
public void setSignId(Integer signId) {
this.signId = signId;
}
public Integer getSignStatus() {
return signStatus;
}
public void setSignStatus(Integer signStatus) {
this.signStatus = signStatus;
}
public Integer getFirstPatientCircle() {
return firstPatientCircle;
}
public void setFirstPatientCircle(Integer firstPatientCircle) {
this.firstPatientCircle = firstPatientCircle;
}
public Integer getFirstReviewPatientCircle() {
return firstReviewPatientCircle;
}
public void setFirstReviewPatientCircle(Integer firstReviewPatientCircle) {
this.firstReviewPatientCircle = firstReviewPatientCircle;
}
public Integer getPerfectInformation() {
return perfectInformation;
}
public void setPerfectInformation(Integer perfectInformation) {
this.perfectInformation = perfectInformation;
}
public Integer getHealthEvaluation() {
return healthEvaluation;
}
public void setHealthEvaluation(Integer healthEvaluation) {
this.healthEvaluation = healthEvaluation;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public Sign() {
}
public Sign(Integer signId, Integer signStatus, Integer firstPatientCircle, Integer firstReviewPatientCircle, Integer perfectInformation, Integer healthEvaluation, Integer userId) {
this.signId = signId;
this.signStatus = signStatus;
this.firstPatientCircle = firstPatientCircle;
this.firstReviewPatientCircle = firstReviewPatientCircle;
this.perfectInformation = perfectInformation;
this.healthEvaluation = healthEvaluation;
this.userId = userId;
}
}

View File

@ -0,0 +1,74 @@
package com.four.common.duck.domain;
import java.util.Date;
/**
*
*/
public class Title {
/**
* id
*/
private Integer titleId;
/**
*
*/
private String titleName;
/**
*
*/
private String content;
/**
*
*/
private Date releaseTime;
/**
*
*/
private String publishAuthorName;
public Integer getTitleId() {
return titleId;
}
public void setTitleId(Integer titleId) {
this.titleId = titleId;
}
public String getTitleName() {
return titleName;
}
public void setTitleName(String titleName) {
this.titleName = titleName;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public Date getReleaseTime() {
return releaseTime;
}
public void setReleaseTime(Date releaseTime) {
this.releaseTime = releaseTime;
}
public String getPublishAuthorName() {
return publishAuthorName;
}
public void setPublishAuthorName(String publishAuthorName) {
this.publishAuthorName = publishAuthorName;
}
}

View File

@ -0,0 +1,71 @@
package com.four.common.duck.gift;
import java.math.BigDecimal;
/**
*
*/
public class Gift {
/**
* id
*/
private Integer giftId;
/**
*
*/
private String giftName;
/**
*
*/
private String giftPhoto;
/**
*
*/
private BigDecimal giftPrice;
public Integer getGiftId() {
return giftId;
}
public void setGiftId(Integer giftId) {
this.giftId = giftId;
}
public String getGiftName() {
return giftName;
}
public void setGiftName(String giftName) {
this.giftName = giftName;
}
public String getGiftPhoto() {
return giftPhoto;
}
public void setGiftPhoto(String giftPhoto) {
this.giftPhoto = giftPhoto;
}
public BigDecimal getGiftPrice() {
return giftPrice;
}
public void setGiftPrice(BigDecimal giftPrice) {
this.giftPrice = giftPrice;
}
public Gift() {
}
public Gift(Integer giftId, String giftName, String giftPhoto, BigDecimal giftPrice) {
this.giftId = giftId;
this.giftName = giftName;
this.giftPhoto = giftPhoto;
this.giftPrice = giftPrice;
}
}

View File

@ -0,0 +1,57 @@
package com.four.common.duck.interrogation;
/**
*
*/
public class AdvisoryCollection {
/**
* id
*/
private Integer advisoryCollectionId;
/**
* id
*/
private Integer consultationDetailsId;
/**
* id
*/
private Integer userId;
public Integer getAdvisoryCollectionId() {
return advisoryCollectionId;
}
public void setAdvisoryCollectionId(Integer advisoryCollectionId) {
this.advisoryCollectionId = advisoryCollectionId;
}
public Integer getConsultationDetailsId() {
return consultationDetailsId;
}
public void setConsultationDetailsId(Integer consultationDetailsId) {
this.consultationDetailsId = consultationDetailsId;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public AdvisoryCollection() {
}
public AdvisoryCollection(Integer advisoryCollectionId, Integer consultationDetailsId, Integer userId) {
this.advisoryCollectionId = advisoryCollectionId;
this.consultationDetailsId = consultationDetailsId;
this.userId = userId;
}
}

View File

@ -0,0 +1,41 @@
package com.four.common.duck.interrogation;
/**
*
*/
public class AutomaticResponse {
/**
* id
*/
private Integer automaticResponseId;
/**
*
*/
private String autoreplyContent;
public Integer getAutomaticResponseId() {
return automaticResponseId;
}
public void setAutomaticResponseId(Integer automaticResponseId) {
this.automaticResponseId = automaticResponseId;
}
public String getAutoreplyContent() {
return autoreplyContent;
}
public void setAutoreplyContent(String autoreplyContent) {
this.autoreplyContent = autoreplyContent;
}
public AutomaticResponse() {
}
public AutomaticResponse(Integer automaticResponseId, String autoreplyContent) {
this.automaticResponseId = automaticResponseId;
this.autoreplyContent = autoreplyContent;
}
}

View File

@ -0,0 +1,85 @@
package com.four.common.duck.interrogation;
import java.util.Date;
/**
*
*/
public class ConsultationDetails {
/**
* id
*/
private Integer consultationDetailsId;
/**
*
*/
private String consultationDetailsTitle;
/**
*
*/
private Integer userId;
/**
*
*/
private Date releaseTime;
/**
*
*/
private String consultationDetailsContent;
public Integer getConsultationDetailsId() {
return consultationDetailsId;
}
public void setConsultationDetailsId(Integer consultationDetailsId) {
this.consultationDetailsId = consultationDetailsId;
}
public String getConsultationDetailsTitle() {
return consultationDetailsTitle;
}
public void setConsultationDetailsTitle(String consultationDetailsTitle) {
this.consultationDetailsTitle = consultationDetailsTitle;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public Date getReleaseTime() {
return releaseTime;
}
public void setReleaseTime(Date releaseTime) {
this.releaseTime = releaseTime;
}
public String getConsultationDetailsContent() {
return consultationDetailsContent;
}
public void setConsultationDetailsContent(String consultationDetailsContent) {
this.consultationDetailsContent = consultationDetailsContent;
}
public ConsultationDetails() {
}
public ConsultationDetails(Integer consultationDetailsId, String consultationDetailsTitle, Integer userId, Date releaseTime, String consultationDetailsContent) {
this.consultationDetailsId = consultationDetailsId;
this.consultationDetailsTitle = consultationDetailsTitle;
this.userId = userId;
this.releaseTime = releaseTime;
this.consultationDetailsContent = consultationDetailsContent;
}
}

View File

@ -0,0 +1,55 @@
package com.four.common.duck.interrogation;
/**
*
*/
public class FollowDoctor {
/**
* id
*/
private Integer followDoctorId;
/**
* id
*/
private Integer userId;
/**
* id
*/
private Integer registrationInformationId;
public Integer getFollowDoctorId() {
return followDoctorId;
}
public void setFollowDoctorId(Integer followDoctorId) {
this.followDoctorId = followDoctorId;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public Integer getRegistrationInformationId() {
return registrationInformationId;
}
public void setRegistrationInformationId(Integer registrationInformationId) {
this.registrationInformationId = registrationInformationId;
}
public FollowDoctor() {
}
public FollowDoctor(Integer followDoctorId, Integer userId, Integer registrationInformationId) {
this.followDoctorId = followDoctorId;
this.userId = userId;
this.registrationInformationId = registrationInformationId;
}
}

View File

@ -0,0 +1,69 @@
package com.four.common.duck.interrogation;
/**
*
*/
public class HistoricalConsultation {
/**
* id
*/
private Integer historicalConsultationId;
/**
* id
*/
private Integer patientId;
/**
* id
*/
private Integer registrationInformationId;
/**
* 12
*/
private Integer historicalConsultationStatus;
public Integer getHistoricalConsultationId() {
return historicalConsultationId;
}
public void setHistoricalConsultationId(Integer historicalConsultationId) {
this.historicalConsultationId = historicalConsultationId;
}
public Integer getPatientId() {
return patientId;
}
public void setPatientId(Integer patientId) {
this.patientId = patientId;
}
public Integer getRegistrationInformationId() {
return registrationInformationId;
}
public void setRegistrationInformationId(Integer registrationInformationId) {
this.registrationInformationId = registrationInformationId;
}
public Integer getHistoricalConsultationStatus() {
return historicalConsultationStatus;
}
public void setHistoricalConsultationStatus(Integer historicalConsultationStatus) {
this.historicalConsultationStatus = historicalConsultationStatus;
}
public HistoricalConsultation() {
}
public HistoricalConsultation(Integer historicalConsultationId, Integer patientId, Integer registrationInformationId, Integer historicalConsultationStatus) {
this.historicalConsultationId = historicalConsultationId;
this.patientId = patientId;
this.registrationInformationId = registrationInformationId;
this.historicalConsultationStatus = historicalConsultationStatus;
}
}

View File

@ -0,0 +1,85 @@
package com.four.common.duck.interrogation;
import java.util.Date;
/**
*
*/
public class PatientEvaluator {
/**
* id
*/
private Integer patientEvaluatorId;
/**
* id
*/
private Integer patientId;
/**
* id
*/
private Integer registrationInformationId;
/**
*
*/
private String commentContent;
/**
*
*/
private Date commentTime;
public Integer getPatientEvaluatorId() {
return patientEvaluatorId;
}
public void setPatientEvaluatorId(Integer patientEvaluatorId) {
this.patientEvaluatorId = patientEvaluatorId;
}
public Integer getPatientId() {
return patientId;
}
public void setPatientId(Integer patientId) {
this.patientId = patientId;
}
public Integer getRegistrationInformationId() {
return registrationInformationId;
}
public void setRegistrationInformationId(Integer registrationInformationId) {
this.registrationInformationId = registrationInformationId;
}
public String getCommentContent() {
return commentContent;
}
public void setCommentContent(String commentContent) {
this.commentContent = commentContent;
}
public Date getCommentTime() {
return commentTime;
}
public void setCommentTime(Date commentTime) {
this.commentTime = commentTime;
}
public PatientEvaluator() {
}
public PatientEvaluator(Integer patientEvaluatorId, Integer patientId, Integer registrationInformationId, String commentContent, Date commentTime) {
this.patientEvaluatorId = patientEvaluatorId;
this.patientId = patientId;
this.registrationInformationId = registrationInformationId;
this.commentContent = commentContent;
this.commentTime = commentTime;
}
}

View File

@ -0,0 +1,41 @@
package com.four.common.duck.interrogation;
/**
*
*/
public class ProfessionalTitleDoctor {
/**
* id
*/
private Integer professionalTitleDoctorId;
/**
*
*/
private String professionalTitleDoctorName;
public Integer getProfessionalTitleDoctorId() {
return professionalTitleDoctorId;
}
public void setProfessionalTitleDoctorId(Integer professionalTitleDoctorId) {
this.professionalTitleDoctorId = professionalTitleDoctorId;
}
public String getProfessionalTitleDoctorName() {
return professionalTitleDoctorName;
}
public void setProfessionalTitleDoctorName(String professionalTitleDoctorName) {
this.professionalTitleDoctorName = professionalTitleDoctorName;
}
public ProfessionalTitleDoctor() {
}
public ProfessionalTitleDoctor(Integer professionalTitleDoctorId, String professionalTitleDoctorName) {
this.professionalTitleDoctorId = professionalTitleDoctorId;
this.professionalTitleDoctorName = professionalTitleDoctorName;
}
}

View File

@ -0,0 +1,184 @@
package com.four.common.duck.interrogation;
import java.math.BigDecimal;
import java.util.Date;
/**
*
*/
public class RegistrationInformation {
/**
* id
*/
private Integer registrationInformationId;
/**
*
*/
private String realName;
/**
*
*/
private String affiliatedHospital;
/**
* id
*/
private Integer medicalDepartmentId;
/**
* id
*/
private Integer professionalTitleDoctorId;
/**
*
*/
private String personalResume;
/**
*
*/
private String areaExpertise;
/**
*
*/
private Date registrationTime;
/**
*
*/
private String numberPatientsServed;
/**
*
*/
private BigDecimal consultingPrice;
/**
* 123
*/
private Integer registrationInformationExamineStatus;
/**
* 1线2线
*/
private Integer registrationInformationMedicStatus;
public Integer getRegistrationInformationId() {
return registrationInformationId;
}
public void setRegistrationInformationId(Integer registrationInformationId) {
this.registrationInformationId = registrationInformationId;
}
public String getRealName() {
return realName;
}
public void setRealName(String realName) {
this.realName = realName;
}
public String getAffiliatedHospital() {
return affiliatedHospital;
}
public void setAffiliatedHospital(String affiliatedHospital) {
this.affiliatedHospital = affiliatedHospital;
}
public Integer getMedicalDepartmentId() {
return medicalDepartmentId;
}
public void setMedicalDepartmentId(Integer medicalDepartmentId) {
this.medicalDepartmentId = medicalDepartmentId;
}
public Integer getProfessionalTitleDoctorId() {
return professionalTitleDoctorId;
}
public void setProfessionalTitleDoctorId(Integer professionalTitleDoctorId) {
this.professionalTitleDoctorId = professionalTitleDoctorId;
}
public String getPersonalResume() {
return personalResume;
}
public void setPersonalResume(String personalResume) {
this.personalResume = personalResume;
}
public String getAreaExpertise() {
return areaExpertise;
}
public void setAreaExpertise(String areaExpertise) {
this.areaExpertise = areaExpertise;
}
public Date getRegistrationTime() {
return registrationTime;
}
public void setRegistrationTime(Date registrationTime) {
this.registrationTime = registrationTime;
}
public String getNumberPatientsServed() {
return numberPatientsServed;
}
public void setNumberPatientsServed(String numberPatientsServed) {
this.numberPatientsServed = numberPatientsServed;
}
public BigDecimal getConsultingPrice() {
return consultingPrice;
}
public void setConsultingPrice(BigDecimal consultingPrice) {
this.consultingPrice = consultingPrice;
}
public Integer getRegistrationInformationExamineStatus() {
return registrationInformationExamineStatus;
}
public void setRegistrationInformationExamineStatus(Integer registrationInformationExamineStatus) {
this.registrationInformationExamineStatus = registrationInformationExamineStatus;
}
public Integer getRegistrationInformationMedicStatus() {
return registrationInformationMedicStatus;
}
public void setRegistrationInformationMedicStatus(Integer registrationInformationMedicStatus) {
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
}
public RegistrationInformation() {
}
public RegistrationInformation(Integer registrationInformationId, String realName, String affiliatedHospital, Integer medicalDepartmentId, Integer professionalTitleDoctorId, String personalResume, String areaExpertise, Date registrationTime, String numberPatientsServed, BigDecimal consultingPrice, Integer registrationInformationExamineStatus, Integer registrationInformationMedicStatus) {
this.registrationInformationId = registrationInformationId;
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.registrationInformationExamineStatus = registrationInformationExamineStatus;
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
}
}

View File

@ -0,0 +1,55 @@
package com.four.common.duck.interrogation;
/**
*
*/
public class SetAutoReply {
/**
* id
*/
private Integer setAutoReplyId;
/**
* id
*/
private Integer registrationInformationId;
/**
* id
*/
private Integer automaticResponseId;
public SetAutoReply() {
}
public Integer getSetAutoReplyId() {
return setAutoReplyId;
}
public void setSetAutoReplyId(Integer setAutoReplyId) {
this.setAutoReplyId = setAutoReplyId;
}
public Integer getRegistrationInformationId() {
return registrationInformationId;
}
public void setRegistrationInformationId(Integer registrationInformationId) {
this.registrationInformationId = registrationInformationId;
}
public Integer getAutomaticResponseId() {
return automaticResponseId;
}
public void setAutomaticResponseId(Integer automaticResponseId) {
this.automaticResponseId = automaticResponseId;
}
public SetAutoReply(Integer setAutoReplyId, Integer registrationInformationId, Integer automaticResponseId) {
this.setAutoReplyId = setAutoReplyId;
this.registrationInformationId = registrationInformationId;
this.automaticResponseId = automaticResponseId;
}
}

View File

@ -0,0 +1,212 @@
package com.four.common.duck.my;
import java.math.BigDecimal;
import java.util.Date;
/**
*
*/
public class User {
/**
* 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;
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getUserEmail() {
return userEmail;
}
public void setUserEmail(String userEmail) {
this.userEmail = userEmail;
}
public String getUserPhone() {
return userPhone;
}
public void setUserPhone(String userPhone) {
this.userPhone = userPhone;
}
public String getUserAvatar() {
return userAvatar;
}
public void setUserAvatar(String userAvatar) {
this.userAvatar = userAvatar;
}
public String getUserSex() {
return userSex;
}
public void setUserSex(String userSex) {
this.userSex = userSex;
}
public String getUserSign() {
return userSign;
}
public void setUserSign(String userSign) {
this.userSign = userSign;
}
public Date getRegistrationTime() {
return registrationTime;
}
public void setRegistrationTime(Date registrationTime) {
this.registrationTime = registrationTime;
}
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 String getInvitationCode() {
return invitationCode;
}
public void setInvitationCode(String invitationCode) {
this.invitationCode = invitationCode;
}
public User() {
}
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) {
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;
}
}

View File

@ -0,0 +1,184 @@
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-19 16:33
* @Version 1.0
**/
@Data
public class DetailsPatientCircleSymptomsDrugs {
/**
* 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;
private String aname;
private String bname;
/**
* id
*/
private Integer pid;
/**
*
*/
private String img;
//----------------------------------------------------------
//----------------------------------------------------------
//----------------------------------------------------------
//----------------------------------------------------------
/**
* 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;
}

View File

@ -0,0 +1,211 @@
package com.four.common.duck.response;
import com.four.common.duck.communitypatients.SymptomsDrugs;
import java.math.BigDecimal;
import java.util.Date;
public class ResponseRegistrationInformation {
/**
* id
*/
private Integer registrationInformationId;
/**
*
*/
private String realName;
/**
*
*/
private String affiliatedHospital;
/**
* id
*/
private Integer medicalDepartmentId;
/**
* id
*/
private Integer professionalTitleDoctorId;
/**
*
*/
private String personalResume;
/**
*
*/
private String areaExpertise;
/**
*
*/
private Date registrationTime;
/**
*
*/
private String numberPatientsServed;
/**
*
*/
private BigDecimal consultingPrice;
/**
* 123
*/
private Integer registrationInformationExamineStatus;
/**
* 1线2线
*/
private Integer registrationInformationMedicStatus;
/**
*
*/
private String name;
/**
*
*/
private Integer professionalTitleDoctorName;
public ResponseRegistrationInformation() {
}
public Integer getRegistrationInformationId() {
return registrationInformationId;
}
public void setRegistrationInformationId(Integer registrationInformationId) {
this.registrationInformationId = registrationInformationId;
}
public String getRealName() {
return realName;
}
public void setRealName(String realName) {
this.realName = realName;
}
public String getAffiliatedHospital() {
return affiliatedHospital;
}
public void setAffiliatedHospital(String affiliatedHospital) {
this.affiliatedHospital = affiliatedHospital;
}
public Integer getMedicalDepartmentId() {
return medicalDepartmentId;
}
public void setMedicalDepartmentId(Integer medicalDepartmentId) {
this.medicalDepartmentId = medicalDepartmentId;
}
public Integer getProfessionalTitleDoctorId() {
return professionalTitleDoctorId;
}
public void setProfessionalTitleDoctorId(Integer professionalTitleDoctorId) {
this.professionalTitleDoctorId = professionalTitleDoctorId;
}
public String getPersonalResume() {
return personalResume;
}
public void setPersonalResume(String personalResume) {
this.personalResume = personalResume;
}
public String getAreaExpertise() {
return areaExpertise;
}
public void setAreaExpertise(String areaExpertise) {
this.areaExpertise = areaExpertise;
}
public Date getRegistrationTime() {
return registrationTime;
}
public void setRegistrationTime(Date registrationTime) {
this.registrationTime = registrationTime;
}
public String getNumberPatientsServed() {
return numberPatientsServed;
}
public void setNumberPatientsServed(String numberPatientsServed) {
this.numberPatientsServed = numberPatientsServed;
}
public BigDecimal getConsultingPrice() {
return consultingPrice;
}
public void setConsultingPrice(BigDecimal consultingPrice) {
this.consultingPrice = consultingPrice;
}
public Integer getRegistrationInformationExamineStatus() {
return registrationInformationExamineStatus;
}
public void setRegistrationInformationExamineStatus(Integer registrationInformationExamineStatus) {
this.registrationInformationExamineStatus = registrationInformationExamineStatus;
}
public Integer getRegistrationInformationMedicStatus() {
return registrationInformationMedicStatus;
}
public void setRegistrationInformationMedicStatus(Integer registrationInformationMedicStatus) {
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getProfessionalTitleDoctorName() {
return professionalTitleDoctorName;
}
public void setProfessionalTitleDoctorName(Integer professionalTitleDoctorName) {
this.professionalTitleDoctorName = professionalTitleDoctorName;
}
public ResponseRegistrationInformation(Integer registrationInformationId, String realName, String affiliatedHospital, Integer medicalDepartmentId, Integer professionalTitleDoctorId, String personalResume, String areaExpertise, Date registrationTime, String numberPatientsServed, BigDecimal consultingPrice, Integer registrationInformationExamineStatus, Integer registrationInformationMedicStatus, String name, Integer professionalTitleDoctorName) {
this.registrationInformationId = registrationInformationId;
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.registrationInformationExamineStatus = registrationInformationExamineStatus;
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
this.name = name;
this.professionalTitleDoctorName = professionalTitleDoctorName;
}
}

View File

@ -0,0 +1,71 @@
package com.four.common.duck.video;
import java.util.Date;
/**
*
*/
public class BuyVideo {
/**
* id
*/
private Integer buyVideoId;
/**
* id
*/
private Integer videoId;
/**
* id
*/
private Integer userId;
/**
*
*/
private Date buyTime;
public Integer getBuyVideoId() {
return buyVideoId;
}
public void setBuyVideoId(Integer buyVideoId) {
this.buyVideoId = buyVideoId;
}
public Integer getVideoId() {
return videoId;
}
public void setVideoId(Integer videoId) {
this.videoId = videoId;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public Date getBuyTime() {
return buyTime;
}
public void setBuyTime(Date buyTime) {
this.buyTime = buyTime;
}
public BuyVideo() {
}
public BuyVideo(Integer buyVideoId, Integer videoId, Integer userId, Date buyTime) {
this.buyVideoId = buyVideoId;
this.videoId = videoId;
this.userId = userId;
this.buyTime = buyTime;
}
}

View File

@ -0,0 +1,55 @@
package com.four.common.duck.video;
/**
*
*/
public class FavoriteVideo {
/**
* id
*/
private Integer favoriteVideoId;
/**
* id
*/
private Integer videoId;
/**
* id
*/
private Integer userId;
public Integer getFavoriteVideoId() {
return favoriteVideoId;
}
public void setFavoriteVideoId(Integer favoriteVideoId) {
this.favoriteVideoId = favoriteVideoId;
}
public Integer getVideoId() {
return videoId;
}
public void setVideoId(Integer videoId) {
this.videoId = videoId;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public FavoriteVideo() {
}
public FavoriteVideo(Integer favoriteVideoId, Integer videoId, Integer userId) {
this.favoriteVideoId = favoriteVideoId;
this.videoId = videoId;
this.userId = userId;
}
}

View File

@ -0,0 +1,70 @@
package com.four.common.duck.video;
/**
*
*/
public class Video {
/**
* id
*/
private Integer videoId;
/**
*
*/
private String videoTitle;
/**
*
*/
private String videoDetails;
/**
*
*/
private String videoPath;
public Integer getVideoId() {
return videoId;
}
public void setVideoId(Integer videoId) {
this.videoId = videoId;
}
public String getVideoTitle() {
return videoTitle;
}
public void setVideoTitle(String videoTitle) {
this.videoTitle = videoTitle;
}
public String getVideoDetails() {
return videoDetails;
}
public void setVideoDetails(String videoDetails) {
this.videoDetails = videoDetails;
}
public String getVideoPath() {
return videoPath;
}
public void setVideoPath(String videoPath) {
this.videoPath = videoPath;
}
public Video() {
}
public Video(Integer videoId, String videoTitle, String videoDetails, String videoPath) {
this.videoId = videoId;
this.videoTitle = videoTitle;
this.videoDetails = videoDetails;
this.videoPath = videoPath;
}
}

View File

@ -0,0 +1,85 @@
package com.four.common.duck.video;
import java.util.Date;
/**
*
*/
public class VideoReview {
/**
* id
*/
private Integer videoReviewId;
/**
* id
*/
private Integer videoId;
/**
* id
*/
private Integer userId;
/**
*
*/
private Date commentTime;
/**
*
*/
private String commentContent;
public Integer getVideoReviewId() {
return videoReviewId;
}
public void setVideoReviewId(Integer videoReviewId) {
this.videoReviewId = videoReviewId;
}
public Integer getVideoId() {
return videoId;
}
public void setVideoId(Integer videoId) {
this.videoId = videoId;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public Date getCommentTime() {
return commentTime;
}
public void setCommentTime(Date commentTime) {
this.commentTime = commentTime;
}
public String getCommentContent() {
return commentContent;
}
public void setCommentContent(String commentContent) {
this.commentContent = commentContent;
}
public VideoReview() {
}
public VideoReview(Integer videoReviewId, Integer videoId, Integer userId, Date commentTime, String commentContent) {
this.videoReviewId = videoReviewId;
this.videoId = videoId;
this.userId = userId;
this.commentTime = commentTime;
this.commentContent = commentContent;
}
}