初始化

master
TangZhaoZhen 2023-10-18 09:03:42 +08:00
commit 8030fa0f4d
36 changed files with 2344 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

23
pom.xml 100644
View File

@ -0,0 +1,23 @@
<?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-dimensional-health</artifactId>
<version>3.6.3</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<version>3.6.3</version>
<artifactId>dimensional-health-patient</artifactId>
<description>
dimensional-health-patient患者模块
</description>
<dependencies>
</dependencies>
</project>

View File

@ -0,0 +1,29 @@
package com.four.patient;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
*
*
* @author ruoyi
*/
@SpringBootApplication
public class PatientApplication
{
public static void main(String[] args)
{
SpringApplication.run(PatientApplication.class, args);
System.out.println("(♥◠‿◠)ノ゙ 患者服务模块启动成功 ლ(´ڡ`ლ)゙ \n" +
" .-------. ____ __ \n" +
" | _ _ \\ \\ \\ / / \n" +
" | ( ' ) | \\ _. / ' \n" +
" |(_ o _) / _( )_ .' \n" +
" | (_,_).' __ ___(_ o _)' \n" +
" | |\\ \\ | || |(_,_)' \n" +
" | | \\ `' /| `-' / \n" +
" | | \\ / \\ / \n" +
" ''-' `'-' `-..-' ");
}
}

View File

@ -0,0 +1,48 @@
package com.four.patient.domain;
import java.util.Date;
/**
*
*/
public class AcceptedProposal {
/**
* id
*/
private Integer acceptedProposalId;
/**
* id
*/
private Integer detailedReviewId;
/**
*
*/
private Date 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,49 @@
package com.four.patient.domain;
/**
*
*/
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;
}
}

View File

@ -0,0 +1,33 @@
package com.four.patient.domain;
/**
*
*/
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;
}
}

View File

@ -0,0 +1,61 @@
package com.four.patient.domain;
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;
}
}

View File

@ -0,0 +1,124 @@
package com.four.patient.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 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,74 @@
package com.four.patient.domain;
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;
}
}

View File

@ -0,0 +1,87 @@
package com.four.patient.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 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,61 @@
package com.four.patient.domain;
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;
}
}

View File

@ -0,0 +1,87 @@
package com.four.patient.domain;
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;
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;
}
}

View File

@ -0,0 +1,178 @@
package com.four.patient.domain;
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 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,124 @@
package com.four.patient.domain;
/**
*
*/
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;
}
}

View File

@ -0,0 +1,46 @@
package com.four.patient.domain;
/**
*
*/
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;
}
}

View File

@ -0,0 +1,46 @@
package com.four.patient.domain;
/**
*
*/
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;
}
}

View File

@ -0,0 +1,61 @@
package com.four.patient.domain;
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;
}
}

View File

@ -0,0 +1,61 @@
package com.four.patient.domain;
import java.util.Date;
/**
*
*/
public class GiftRecord {
/**
* id
*/
private Integer giftRecordId;
/**
* id
*/
private Integer giverId;
/**
* id
*/
private Integer giftId;
/**
*
*/
private Date 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,59 @@
package com.four.patient.domain;
/**
*
*/
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;
}
}

View File

@ -0,0 +1,61 @@
package com.four.patient.domain;
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;
}
}

View File

@ -0,0 +1,33 @@
package com.four.patient.domain;
/**
*
*/
public class MedicalDepartment {
/**
* id
*/
private Integer medicalDepartmentId;
/**
*
*/
private String medicalDepartmentName;
public Integer getMedicalDepartmentId() {
return medicalDepartmentId;
}
public void setMedicalDepartmentId(Integer medicalDepartmentId) {
this.medicalDepartmentId = medicalDepartmentId;
}
public String getMedicalDepartmentName() {
return medicalDepartmentName;
}
public void setMedicalDepartmentName(String medicalDepartmentName) {
this.medicalDepartmentName = medicalDepartmentName;
}
}

View File

@ -0,0 +1,85 @@
package com.four.patient.domain;
/**
*
*/
public class PathologicalDetails {
/**
* id
*/
private Integer detailsSymptomsId;
/**
* +id
*/
private Integer id;
/**
*
*/
private String pathology;
/**
*
*/
private String symptom;
/**
*
*/
private String prosCons;
/**
* 西
*/
private String 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,74 @@
package com.four.patient.domain;
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;
}
}

View File

@ -0,0 +1,33 @@
package com.four.patient.domain;
/**
*
*/
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;
}
}

View File

@ -0,0 +1,88 @@
package com.four.patient.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 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,166 @@
package com.four.patient.domain;
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;
}
}

View File

@ -0,0 +1,22 @@
package com.four.patient.domain;
/**
*
*/
public class SetAutoReply {
/**
* id
*/
private Integer setAutoReplyId;
/**
* id
*/
private Integer registrationInformationId;
/**
* id
*/
private Integer automaticResponseId;
}

View File

@ -0,0 +1,42 @@
package com.four.patient.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;
}

View File

@ -0,0 +1,46 @@
package com.four.patient.domain;
/**
* +
*/
public class SymptomsDrugs {
/**
* +id
*/
private Integer id;
/**
*
*/
private String name;
/**
* id
*/
private Integer pid;
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,74 @@
package com.four.patient.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,80 @@
package com.four.patient.domain;
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;
}

View File

@ -0,0 +1,60 @@
package com.four.patient.domain;
/**
*
*/
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;
}
}

View File

@ -0,0 +1,74 @@
package com.four.patient.domain;
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;
}
}

View File

@ -0,0 +1,10 @@
Spring Boot Version: ${spring-boot.version}
Spring Application Name: ${spring.application.name}
_ _
(_) | |
_ __ _ _ ___ _ _ _ ______ ___ _ _ ___ | |_ ___ _ __ ___
| '__|| | | | / _ \ | | | || ||______|/ __|| | | |/ __|| __| / _ \| '_ ` _ \
| | | |_| || (_) || |_| || | \__ \| |_| |\__ \| |_ | __/| | | | | |
|_| \__,_| \___/ \__, ||_| |___/ \__, ||___/ \__| \___||_| |_| |_|
__/ | __/ |
|___/ |___/

View File

@ -0,0 +1,25 @@
# Tomcat
server:
port: 9209
# Spring
spring:
application:
# 应用名称
name: four-patient
profiles:
# 环境配置
active: dev
cloud:
nacos:
discovery:
# 服务注册地址
server-addr: 101.34.252.165:8848
config:
# 配置中心地址
server-addr: 101.34.252.165:8848
# 配置文件格式
file-extension: yml
# 共享配置
shared-configs:
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}

View File

@ -0,0 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration scan="true" scanPeriod="60 seconds" debug="false">
<!-- 日志存放路径 -->
<property name="log.path" value="logs/dimensional-health-patient" />
<!-- 日志输出格式 -->
<property name="log.pattern" value="%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n" />
<!-- 控制台输出 -->
<appender name="console" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>${log.pattern}</pattern>
</encoder>
</appender>
<!-- 系统日志输出 -->
<appender name="file_info" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log.path}/info.log</file>
<!-- 循环政策:基于时间创建日志文件 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 日志文件名格式 -->
<fileNamePattern>${log.path}/info.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- 日志最大的历史 60天 -->
<maxHistory>60</maxHistory>
</rollingPolicy>
<encoder>
<pattern>${log.pattern}</pattern>
</encoder>
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<!-- 过滤的级别 -->
<level>INFO</level>
<!-- 匹配时的操作:接收(记录) -->
<onMatch>ACCEPT</onMatch>
<!-- 不匹配时的操作:拒绝(不记录) -->
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<appender name="file_error" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${log.path}/error.log</file>
<!-- 循环政策:基于时间创建日志文件 -->
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- 日志文件名格式 -->
<fileNamePattern>${log.path}/error.%d{yyyy-MM-dd}.log</fileNamePattern>
<!-- 日志最大的历史 60天 -->
<maxHistory>60</maxHistory>
</rollingPolicy>
<encoder>
<pattern>${log.pattern}</pattern>
</encoder>
<filter class="ch.qos.logback.classic.filter.LevelFilter">
<!-- 过滤的级别 -->
<level>ERROR</level>
<!-- 匹配时的操作:接收(记录) -->
<onMatch>ACCEPT</onMatch>
<!-- 不匹配时的操作:拒绝(不记录) -->
<onMismatch>DENY</onMismatch>
</filter>
</appender>
<!-- 系统模块日志级别控制 -->
<logger name="com.four" level="info" />
<!-- Spring日志级别控制 -->
<logger name="org.springframework" level="warn" />
<root level="info">
<appender-ref ref="console" />
</root>
<!--系统操作日志-->
<root level="info">
<appender-ref ref="file_info" />
<appender-ref ref="file_error" />
</root>
</configuration>