master
parent
4ccb366f98
commit
006ad71238
|
@ -10,12 +10,12 @@ public class DetailCollection {
|
|||
/**
|
||||
* 详情表中的收藏id
|
||||
*/
|
||||
private Integer detailCollectionId;
|
||||
private Long detailCollectionId;
|
||||
|
||||
/**
|
||||
* 病友圈详情id
|
||||
*/
|
||||
private Integer detailsPatientCircleId;
|
||||
private Long detailsPatientCircleId;
|
||||
|
||||
/**
|
||||
* 收藏时间
|
||||
|
@ -27,19 +27,19 @@ public class DetailCollection {
|
|||
*/
|
||||
private String collector;
|
||||
|
||||
public Integer getDetailCollectionId() {
|
||||
public Long getDetailCollectionId() {
|
||||
return detailCollectionId;
|
||||
}
|
||||
|
||||
public void setDetailCollectionId(Integer detailCollectionId) {
|
||||
public void setDetailCollectionId(Long detailCollectionId) {
|
||||
this.detailCollectionId = detailCollectionId;
|
||||
}
|
||||
|
||||
public Integer getDetailsPatientCircleId() {
|
||||
public Long getDetailsPatientCircleId() {
|
||||
return detailsPatientCircleId;
|
||||
}
|
||||
|
||||
public void setDetailsPatientCircleId(Integer detailsPatientCircleId) {
|
||||
public void setDetailsPatientCircleId(Long detailsPatientCircleId) {
|
||||
this.detailsPatientCircleId = detailsPatientCircleId;
|
||||
}
|
||||
|
||||
|
@ -62,7 +62,7 @@ public class DetailCollection {
|
|||
public DetailCollection() {
|
||||
}
|
||||
|
||||
public DetailCollection(Integer detailCollectionId, Integer detailsPatientCircleId, Date collectionTime, String collector) {
|
||||
public DetailCollection(Long detailCollectionId, Long detailsPatientCircleId, Date collectionTime, String collector) {
|
||||
this.detailCollectionId = detailCollectionId;
|
||||
this.detailsPatientCircleId = detailsPatientCircleId;
|
||||
this.collectionTime = collectionTime;
|
||||
|
|
|
@ -10,12 +10,12 @@ public class DetailedReview {
|
|||
/**
|
||||
* 详情表中的评论id
|
||||
*/
|
||||
private Integer detailedReviewId;
|
||||
private Long detailedReviewId;
|
||||
|
||||
/**
|
||||
* 病友圈详情id
|
||||
*/
|
||||
private Integer detailsPatientCircleId;
|
||||
private Long detailsPatientCircleId;
|
||||
|
||||
/**
|
||||
* 评论时间
|
||||
|
@ -25,17 +25,17 @@ public class DetailedReview {
|
|||
/**
|
||||
* 评论人id
|
||||
*/
|
||||
private Integer reviewerId;
|
||||
private Long reviewerId;
|
||||
|
||||
/**
|
||||
* 点赞次数
|
||||
*/
|
||||
private Integer numberLikes;
|
||||
private Long numberLikes;
|
||||
|
||||
/**
|
||||
* 嘲讽次数
|
||||
*/
|
||||
private Integer tauntCount;
|
||||
private Long tauntCount;
|
||||
|
||||
/***
|
||||
* 评论内容
|
||||
|
@ -43,7 +43,7 @@ public class DetailedReview {
|
|||
*/
|
||||
private String name;
|
||||
|
||||
public DetailedReview(Integer detailedReviewId, Integer detailsPatientCircleId, Date commentTime, Integer reviewerId, Integer numberLikes, Integer tauntCount, String name) {
|
||||
public DetailedReview(Long detailedReviewId, Long detailsPatientCircleId, Date commentTime, Long reviewerId, Long numberLikes, Long tauntCount, String name) {
|
||||
this.detailedReviewId = detailedReviewId;
|
||||
this.detailsPatientCircleId = detailsPatientCircleId;
|
||||
this.commentTime = commentTime;
|
||||
|
@ -53,19 +53,19 @@ public class DetailedReview {
|
|||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getDetailedReviewId() {
|
||||
public Long getDetailedReviewId() {
|
||||
return detailedReviewId;
|
||||
}
|
||||
|
||||
public void setDetailedReviewId(Integer detailedReviewId) {
|
||||
public void setDetailedReviewId(Long detailedReviewId) {
|
||||
this.detailedReviewId = detailedReviewId;
|
||||
}
|
||||
|
||||
public Integer getDetailsPatientCircleId() {
|
||||
public Long getDetailsPatientCircleId() {
|
||||
return detailsPatientCircleId;
|
||||
}
|
||||
|
||||
public void setDetailsPatientCircleId(Integer detailsPatientCircleId) {
|
||||
public void setDetailsPatientCircleId(Long detailsPatientCircleId) {
|
||||
this.detailsPatientCircleId = detailsPatientCircleId;
|
||||
}
|
||||
|
||||
|
@ -77,27 +77,27 @@ public class DetailedReview {
|
|||
this.commentTime = commentTime;
|
||||
}
|
||||
|
||||
public Integer getReviewerId() {
|
||||
public Long getReviewerId() {
|
||||
return reviewerId;
|
||||
}
|
||||
|
||||
public void setReviewerId(Integer reviewerId) {
|
||||
public void setReviewerId(Long reviewerId) {
|
||||
this.reviewerId = reviewerId;
|
||||
}
|
||||
|
||||
public Integer getNumberLikes() {
|
||||
public Long getNumberLikes() {
|
||||
return numberLikes;
|
||||
}
|
||||
|
||||
public void setNumberLikes(Integer numberLikes) {
|
||||
public void setNumberLikes(Long numberLikes) {
|
||||
this.numberLikes = numberLikes;
|
||||
}
|
||||
|
||||
public Integer getTauntCount() {
|
||||
public Long getTauntCount() {
|
||||
return tauntCount;
|
||||
}
|
||||
|
||||
public void setTauntCount(Integer tauntCount) {
|
||||
public void setTauntCount(Long tauntCount) {
|
||||
this.tauntCount = tauntCount;
|
||||
}
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ public class DetailsPatientCircle {
|
|||
/**
|
||||
* 病友圈详情id
|
||||
*/
|
||||
private Integer detailsPatientCircleId;
|
||||
private Long detailsPatientCircleId;
|
||||
|
||||
/**
|
||||
* 标题
|
||||
|
@ -20,17 +20,17 @@ public class DetailsPatientCircle {
|
|||
/**
|
||||
* 发布人id
|
||||
*/
|
||||
private Integer publisherId;
|
||||
private Long publisherId;
|
||||
|
||||
/**
|
||||
* 病症id
|
||||
*/
|
||||
private Integer diseaseId;
|
||||
private Long diseaseId;
|
||||
|
||||
/**
|
||||
* 科室id
|
||||
*/
|
||||
private Integer departmentId;
|
||||
private Long departmentId;
|
||||
|
||||
/**
|
||||
* 病症详情
|
||||
|
@ -60,22 +60,22 @@ public class DetailsPatientCircle {
|
|||
/**
|
||||
* 提升悬赏额度
|
||||
*/
|
||||
private Integer rewardAmount;
|
||||
private Long rewardAmount;
|
||||
|
||||
/**
|
||||
* 收藏数量
|
||||
*/
|
||||
private Integer collectionQuantity;
|
||||
private Long collectionQuantity;
|
||||
|
||||
/**
|
||||
* 评论数量
|
||||
*/
|
||||
private Integer numberComments;
|
||||
private Long 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) {
|
||||
public DetailsPatientCircle(Long detailsPatientCircleId, String title, Long publisherId, Long diseaseId, Long departmentId, String detailsSymptoms, Date treatmentExperienceStartTime, Date treatmentExperienceEndTime, String treatmentExperience, String relatedPictures, Long rewardAmount, Long collectionQuantity, Long numberComments) {
|
||||
this.detailsPatientCircleId = detailsPatientCircleId;
|
||||
this.title = title;
|
||||
this.publisherId = publisherId;
|
||||
|
@ -91,11 +91,11 @@ public class DetailsPatientCircle {
|
|||
this.numberComments = numberComments;
|
||||
}
|
||||
|
||||
public Integer getDetailsPatientCircleId() {
|
||||
public Long getDetailsPatientCircleId() {
|
||||
return detailsPatientCircleId;
|
||||
}
|
||||
|
||||
public void setDetailsPatientCircleId(Integer detailsPatientCircleId) {
|
||||
public void setDetailsPatientCircleId(Long detailsPatientCircleId) {
|
||||
this.detailsPatientCircleId = detailsPatientCircleId;
|
||||
}
|
||||
|
||||
|
@ -107,27 +107,27 @@ public class DetailsPatientCircle {
|
|||
this.title = title;
|
||||
}
|
||||
|
||||
public Integer getPublisherId() {
|
||||
public Long getPublisherId() {
|
||||
return publisherId;
|
||||
}
|
||||
|
||||
public void setPublisherId(Integer publisherId) {
|
||||
public void setPublisherId(Long publisherId) {
|
||||
this.publisherId = publisherId;
|
||||
}
|
||||
|
||||
public Integer getDiseaseId() {
|
||||
public Long getDiseaseId() {
|
||||
return diseaseId;
|
||||
}
|
||||
|
||||
public void setDiseaseId(Integer diseaseId) {
|
||||
public void setDiseaseId(Long diseaseId) {
|
||||
this.diseaseId = diseaseId;
|
||||
}
|
||||
|
||||
public Integer getDepartmentId() {
|
||||
public Long getDepartmentId() {
|
||||
return departmentId;
|
||||
}
|
||||
|
||||
public void setDepartmentId(Integer departmentId) {
|
||||
public void setDepartmentId(Long departmentId) {
|
||||
this.departmentId = departmentId;
|
||||
}
|
||||
|
||||
|
@ -171,27 +171,27 @@ public class DetailsPatientCircle {
|
|||
this.relatedPictures = relatedPictures;
|
||||
}
|
||||
|
||||
public Integer getRewardAmount() {
|
||||
public Long getRewardAmount() {
|
||||
return rewardAmount;
|
||||
}
|
||||
|
||||
public void setRewardAmount(Integer rewardAmount) {
|
||||
public void setRewardAmount(Long rewardAmount) {
|
||||
this.rewardAmount = rewardAmount;
|
||||
}
|
||||
|
||||
public Integer getCollectionQuantity() {
|
||||
public Long getCollectionQuantity() {
|
||||
return collectionQuantity;
|
||||
}
|
||||
|
||||
public void setCollectionQuantity(Integer collectionQuantity) {
|
||||
public void setCollectionQuantity(Long collectionQuantity) {
|
||||
this.collectionQuantity = collectionQuantity;
|
||||
}
|
||||
|
||||
public Integer getNumberComments() {
|
||||
public Long getNumberComments() {
|
||||
return numberComments;
|
||||
}
|
||||
|
||||
public void setNumberComments(Integer numberComments) {
|
||||
public void setNumberComments(Long numberComments) {
|
||||
this.numberComments = numberComments;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,12 +8,12 @@ public class DrugDetails {
|
|||
/**
|
||||
* 药品详情id
|
||||
*/
|
||||
private Integer drugDetailsId;
|
||||
private Long drugDetailsId;
|
||||
|
||||
/**
|
||||
* 常见病症+常见药品表id
|
||||
*/
|
||||
private Integer id;
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 药品成分
|
||||
|
@ -50,19 +50,19 @@ public class DrugDetails {
|
|||
*/
|
||||
private String adverseReaction;
|
||||
|
||||
public Integer getDrugDetailsId() {
|
||||
public Long getDrugDetailsId() {
|
||||
return drugDetailsId;
|
||||
}
|
||||
|
||||
public void setDrugDetailsId(Integer drugDetailsId) {
|
||||
public void setDrugDetailsId(Long drugDetailsId) {
|
||||
this.drugDetailsId = drugDetailsId;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
|
@ -122,7 +122,7 @@ public class DrugDetails {
|
|||
this.adverseReaction = adverseReaction;
|
||||
}
|
||||
|
||||
public DrugDetails(Integer drugDetailsId, Integer id, String pharmaceuticalIngredient, String drugContraindication, String functionalIndications, String usageDosage, String drugCharacter, String packingSpecification, String adverseReaction) {
|
||||
public DrugDetails(Long drugDetailsId, Long id, String pharmaceuticalIngredient, String drugContraindication, String functionalIndications, String usageDosage, String drugCharacter, String packingSpecification, String adverseReaction) {
|
||||
this.drugDetailsId = drugDetailsId;
|
||||
this.id = id;
|
||||
this.pharmaceuticalIngredient = pharmaceuticalIngredient;
|
||||
|
|
|
@ -13,12 +13,12 @@ public class LikeMock {
|
|||
/**
|
||||
* 点赞和嘲讽id
|
||||
*/
|
||||
private Integer likeMockId;
|
||||
private Long likeMockId;
|
||||
|
||||
/**
|
||||
* 点赞或嘲讽人id
|
||||
*/
|
||||
private Integer likeMockPeopleId;
|
||||
private Long likeMockPeopleId;
|
||||
|
||||
/**
|
||||
* 点赞时间
|
||||
|
@ -28,38 +28,38 @@ public class LikeMock {
|
|||
/**
|
||||
* 状态1:代表点赞2:代表嘲讽
|
||||
*/
|
||||
private Integer likeMockStatus;
|
||||
private Long likeMockStatus;
|
||||
|
||||
/**
|
||||
*状态1:点赞 状态2:取消
|
||||
* @return
|
||||
*/
|
||||
private Integer likeCancellationStatus;
|
||||
private Long likeCancellationStatus;
|
||||
|
||||
|
||||
|
||||
public Integer getLikeCancellationStatus() {
|
||||
public Long getLikeCancellationStatus() {
|
||||
return likeCancellationStatus;
|
||||
}
|
||||
|
||||
public void setLikeCancellationStatus(Integer likeCancellationStatus) {
|
||||
public void setLikeCancellationStatus(Long likeCancellationStatus) {
|
||||
this.likeCancellationStatus = likeCancellationStatus;
|
||||
}
|
||||
|
||||
|
||||
public Integer getLikeMockId() {
|
||||
public Long getLikeMockId() {
|
||||
return likeMockId;
|
||||
}
|
||||
|
||||
public void setLikeMockId(Integer likeMockId) {
|
||||
public void setLikeMockId(Long likeMockId) {
|
||||
this.likeMockId = likeMockId;
|
||||
}
|
||||
|
||||
public Integer getLikeMockPeopleId() {
|
||||
public Long getLikeMockPeopleId() {
|
||||
return likeMockPeopleId;
|
||||
}
|
||||
|
||||
public void setLikeMockPeopleId(Integer likeMockPeopleId) {
|
||||
public void setLikeMockPeopleId(Long likeMockPeopleId) {
|
||||
this.likeMockPeopleId = likeMockPeopleId;
|
||||
}
|
||||
|
||||
|
@ -71,11 +71,11 @@ public class LikeMock {
|
|||
this.thumbsTime = thumbsTime;
|
||||
}
|
||||
|
||||
public Integer getLikeMockStatus() {
|
||||
public Long getLikeMockStatus() {
|
||||
return likeMockStatus;
|
||||
}
|
||||
|
||||
public void setLikeMockStatus(Integer likeMockStatus) {
|
||||
public void setLikeMockStatus(Long likeMockStatus) {
|
||||
this.likeMockStatus = likeMockStatus;
|
||||
}
|
||||
|
||||
|
@ -83,7 +83,7 @@ public class LikeMock {
|
|||
public LikeMock() {
|
||||
}
|
||||
|
||||
public LikeMock(Integer likeMockId, Integer likeMockPeopleId, Date thumbsTime, Integer likeMockStatus) {
|
||||
public LikeMock(Long likeMockId, Long likeMockPeopleId, Date thumbsTime, Long likeMockStatus) {
|
||||
this.likeMockId = likeMockId;
|
||||
this.likeMockPeopleId = likeMockPeopleId;
|
||||
this.thumbsTime = thumbsTime;
|
||||
|
|
|
@ -8,12 +8,12 @@ public class PathologicalDetails {
|
|||
/**
|
||||
* 病症详情id
|
||||
*/
|
||||
private Integer detailsSymptomsId;
|
||||
private Long detailsSymptomsId;
|
||||
|
||||
/**
|
||||
* 常见病症+常见药品id
|
||||
*/
|
||||
private Integer id;
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 病理
|
||||
|
@ -38,7 +38,7 @@ public class PathologicalDetails {
|
|||
public PathologicalDetails() {
|
||||
}
|
||||
|
||||
public PathologicalDetails(Integer detailsSymptomsId, Integer id, String pathology, String symptom, String prosCons, String heal) {
|
||||
public PathologicalDetails(Long detailsSymptomsId, Long id, String pathology, String symptom, String prosCons, String heal) {
|
||||
this.detailsSymptomsId = detailsSymptomsId;
|
||||
this.id = id;
|
||||
this.pathology = pathology;
|
||||
|
@ -47,19 +47,19 @@ public class PathologicalDetails {
|
|||
this.heal = heal;
|
||||
}
|
||||
|
||||
public Integer getDetailsSymptomsId() {
|
||||
public Long getDetailsSymptomsId() {
|
||||
return detailsSymptomsId;
|
||||
}
|
||||
|
||||
public void setDetailsSymptomsId(Integer detailsSymptomsId) {
|
||||
public void setDetailsSymptomsId(Long detailsSymptomsId) {
|
||||
this.detailsSymptomsId = detailsSymptomsId;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ public class SymptomsDrugs {
|
|||
/**
|
||||
* 常见病症+常见药品id
|
||||
*/
|
||||
private Integer id;
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
|
@ -18,7 +18,7 @@ public class SymptomsDrugs {
|
|||
/**
|
||||
* 与id关联
|
||||
*/
|
||||
private Integer pid;
|
||||
private Long pid;
|
||||
|
||||
|
||||
private String aname;
|
||||
|
@ -48,7 +48,7 @@ public class SymptomsDrugs {
|
|||
public SymptomsDrugs() {
|
||||
}
|
||||
|
||||
public SymptomsDrugs(Integer id, String name,String aname,String bname, Integer pid, String img) {
|
||||
public SymptomsDrugs(Long id, String name,String aname,String bname, Long pid, String img) {
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.pid = pid;
|
||||
|
@ -57,11 +57,11 @@ public class SymptomsDrugs {
|
|||
this.bname = bname;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
|
@ -73,11 +73,11 @@ public class SymptomsDrugs {
|
|||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getPid() {
|
||||
public Long getPid() {
|
||||
return pid;
|
||||
}
|
||||
|
||||
public void setPid(Integer pid) {
|
||||
public void setPid(Long pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,11 +8,11 @@ public class Constants {
|
|||
/**
|
||||
* 成功标记
|
||||
*/
|
||||
public static final Integer SUCCESS = 200;
|
||||
public static final Long SUCCESS = 200;
|
||||
public static final String SUCCESS_MSG = "操作成功";
|
||||
/**
|
||||
* 失败标记
|
||||
*/
|
||||
public static final Integer ERROR = 500;
|
||||
public static final Long ERROR = 500;
|
||||
public static final String ERROR_MSG = "操作异常";
|
||||
}
|
||||
|
|
|
@ -10,12 +10,12 @@ public class AcceptedProposal {
|
|||
/**
|
||||
* 被采纳建议id
|
||||
*/
|
||||
private Integer acceptedProposalId;
|
||||
private Long acceptedProposalId;
|
||||
|
||||
/**
|
||||
* 详情表中的评论id
|
||||
*/
|
||||
private Integer detailedReviewId;
|
||||
private Long detailedReviewId;
|
||||
|
||||
/**
|
||||
* 采纳时间
|
||||
|
@ -25,25 +25,25 @@ public class AcceptedProposal {
|
|||
public AcceptedProposal() {
|
||||
}
|
||||
|
||||
public AcceptedProposal(Integer acceptedProposalId, Integer detailedReviewId, Date adoptionTime) {
|
||||
public AcceptedProposal(Long acceptedProposalId, Long detailedReviewId, Date adoptionTime) {
|
||||
this.acceptedProposalId = acceptedProposalId;
|
||||
this.detailedReviewId = detailedReviewId;
|
||||
this.adoptionTime = adoptionTime;
|
||||
}
|
||||
|
||||
public Integer getAcceptedProposalId() {
|
||||
public Long getAcceptedProposalId() {
|
||||
return acceptedProposalId;
|
||||
}
|
||||
|
||||
public void setAcceptedProposalId(Integer acceptedProposalId) {
|
||||
public void setAcceptedProposalId(Long acceptedProposalId) {
|
||||
this.acceptedProposalId = acceptedProposalId;
|
||||
}
|
||||
|
||||
public Integer getDetailedReviewId() {
|
||||
public Long getDetailedReviewId() {
|
||||
return detailedReviewId;
|
||||
}
|
||||
|
||||
public void setDetailedReviewId(Integer detailedReviewId) {
|
||||
public void setDetailedReviewId(Long detailedReviewId) {
|
||||
this.detailedReviewId = detailedReviewId;
|
||||
}
|
||||
|
||||
|
|
|
@ -8,12 +8,12 @@ public class CertifiedBankCard {
|
|||
/**
|
||||
* 用户的实名认证和银行卡id
|
||||
*/
|
||||
private Integer certifiedBankCardId;
|
||||
private Long certifiedBankCardId;
|
||||
|
||||
/**
|
||||
* 用户的id
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 真实姓名
|
||||
|
@ -33,7 +33,7 @@ public class CertifiedBankCard {
|
|||
/**
|
||||
* 身份证号
|
||||
*/
|
||||
private Integer idNumber;
|
||||
private Long idNumber;
|
||||
|
||||
/**
|
||||
* 开户行:银行名称
|
||||
|
@ -48,12 +48,12 @@ public class CertifiedBankCard {
|
|||
/**
|
||||
* 状态:1身份证号 2银行卡号
|
||||
*/
|
||||
private Integer certifiedBankCardStatus;
|
||||
private Long certifiedBankCardStatus;
|
||||
|
||||
public CertifiedBankCard() {
|
||||
}
|
||||
|
||||
public CertifiedBankCard(Integer certifiedBankCardId, Integer userId, String realName, String realGender, String trueNativePlace, Integer idNumber, String bankName, String bankCardNumber, Integer certifiedBankCardStatus) {
|
||||
public CertifiedBankCard(Long certifiedBankCardId, Long userId, String realName, String realGender, String trueNativePlace, Long idNumber, String bankName, String bankCardNumber, Long certifiedBankCardStatus) {
|
||||
this.certifiedBankCardId = certifiedBankCardId;
|
||||
this.userId = userId;
|
||||
this.realName = realName;
|
||||
|
@ -65,19 +65,19 @@ public class CertifiedBankCard {
|
|||
this.certifiedBankCardStatus = certifiedBankCardStatus;
|
||||
}
|
||||
|
||||
public Integer getCertifiedBankCardId() {
|
||||
public Long getCertifiedBankCardId() {
|
||||
return certifiedBankCardId;
|
||||
}
|
||||
|
||||
public void setCertifiedBankCardId(Integer certifiedBankCardId) {
|
||||
public void setCertifiedBankCardId(Long certifiedBankCardId) {
|
||||
this.certifiedBankCardId = certifiedBankCardId;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
|
@ -105,11 +105,11 @@ public class CertifiedBankCard {
|
|||
this.trueNativePlace = trueNativePlace;
|
||||
}
|
||||
|
||||
public Integer getIdNumber() {
|
||||
public Long getIdNumber() {
|
||||
return idNumber;
|
||||
}
|
||||
|
||||
public void setIdNumber(Integer idNumber) {
|
||||
public void setIdNumber(Long idNumber) {
|
||||
this.idNumber = idNumber;
|
||||
}
|
||||
|
||||
|
@ -129,11 +129,11 @@ public class CertifiedBankCard {
|
|||
this.bankCardNumber = bankCardNumber;
|
||||
}
|
||||
|
||||
public Integer getCertifiedBankCardStatus() {
|
||||
public Long getCertifiedBankCardStatus() {
|
||||
return certifiedBankCardStatus;
|
||||
}
|
||||
|
||||
public void setCertifiedBankCardStatus(Integer certifiedBankCardStatus) {
|
||||
public void setCertifiedBankCardStatus(Long certifiedBankCardStatus) {
|
||||
this.certifiedBankCardStatus = certifiedBankCardStatus;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@ public class ConsultationRecord {
|
|||
/**
|
||||
* 咨询记录id
|
||||
*/
|
||||
private Integer consultationRecordId;
|
||||
private Long consultationRecordId;
|
||||
|
||||
/**
|
||||
* 咨询时间
|
||||
|
@ -20,7 +20,7 @@ public class ConsultationRecord {
|
|||
/**
|
||||
* 咨询人id
|
||||
*/
|
||||
private Integer consultantId;
|
||||
private Long consultantId;
|
||||
|
||||
/**
|
||||
* 咨询内容
|
||||
|
@ -30,21 +30,21 @@ public class ConsultationRecord {
|
|||
/**
|
||||
* 医生注册信息id
|
||||
*/
|
||||
private Integer registrationInformationId;
|
||||
private Long registrationInformationId;
|
||||
|
||||
/**
|
||||
* 医生回复的内容
|
||||
*/
|
||||
private String replyContent;
|
||||
|
||||
public Integer getConsultationRecordId() {
|
||||
public Long getConsultationRecordId() {
|
||||
return consultationRecordId;
|
||||
}
|
||||
|
||||
public ConsultationRecord() {
|
||||
}
|
||||
|
||||
public ConsultationRecord(Integer consultationRecordId, Date consultationTime, Integer consultantId, String consultationContent, Integer registrationInformationId, String replyContent) {
|
||||
public ConsultationRecord(Long consultationRecordId, Date consultationTime, Long consultantId, String consultationContent, Long registrationInformationId, String replyContent) {
|
||||
this.consultationRecordId = consultationRecordId;
|
||||
this.consultationTime = consultationTime;
|
||||
this.consultantId = consultantId;
|
||||
|
@ -53,7 +53,7 @@ public class ConsultationRecord {
|
|||
this.replyContent = replyContent;
|
||||
}
|
||||
|
||||
public void setConsultationRecordId(Integer consultationRecordId) {
|
||||
public void setConsultationRecordId(Long consultationRecordId) {
|
||||
this.consultationRecordId = consultationRecordId;
|
||||
}
|
||||
|
||||
|
@ -65,11 +65,11 @@ public class ConsultationRecord {
|
|||
this.consultationTime = consultationTime;
|
||||
}
|
||||
|
||||
public Integer getConsultantId() {
|
||||
public Long getConsultantId() {
|
||||
return consultantId;
|
||||
}
|
||||
|
||||
public void setConsultantId(Integer consultantId) {
|
||||
public void setConsultantId(Long consultantId) {
|
||||
this.consultantId = consultantId;
|
||||
}
|
||||
|
||||
|
@ -81,11 +81,11 @@ public class ConsultationRecord {
|
|||
this.consultationContent = consultationContent;
|
||||
}
|
||||
|
||||
public Integer getRegistrationInformationId() {
|
||||
public Long getRegistrationInformationId() {
|
||||
return registrationInformationId;
|
||||
}
|
||||
|
||||
public void setRegistrationInformationId(Integer registrationInformationId) {
|
||||
public void setRegistrationInformationId(Long registrationInformationId) {
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
}
|
||||
|
||||
|
|
|
@ -10,17 +10,17 @@ public class GiftRecord {
|
|||
/**
|
||||
* 礼物记录id
|
||||
*/
|
||||
private Integer giftRecordId;
|
||||
private Long giftRecordId;
|
||||
|
||||
/**
|
||||
* 送礼人id
|
||||
*/
|
||||
private Integer giverId;
|
||||
private Long giverId;
|
||||
|
||||
/**
|
||||
* 礼物id
|
||||
*/
|
||||
private Integer giftId;
|
||||
private Long giftId;
|
||||
|
||||
/**
|
||||
* 送礼时间
|
||||
|
@ -30,34 +30,34 @@ public class GiftRecord {
|
|||
public GiftRecord() {
|
||||
}
|
||||
|
||||
public GiftRecord(Integer giftRecordId, Integer giverId, Integer giftId, Date giftGivingTime) {
|
||||
public GiftRecord(Long giftRecordId, Long giverId, Long giftId, Date giftGivingTime) {
|
||||
this.giftRecordId = giftRecordId;
|
||||
this.giverId = giverId;
|
||||
this.giftId = giftId;
|
||||
this.giftGivingTime = giftGivingTime;
|
||||
}
|
||||
|
||||
public Integer getGiftRecordId() {
|
||||
public Long getGiftRecordId() {
|
||||
return giftRecordId;
|
||||
}
|
||||
|
||||
public void setGiftRecordId(Integer giftRecordId) {
|
||||
public void setGiftRecordId(Long giftRecordId) {
|
||||
this.giftRecordId = giftRecordId;
|
||||
}
|
||||
|
||||
public Integer getGiverId() {
|
||||
public Long getGiverId() {
|
||||
return giverId;
|
||||
}
|
||||
|
||||
public void setGiverId(Integer giverId) {
|
||||
public void setGiverId(Long giverId) {
|
||||
this.giverId = giverId;
|
||||
}
|
||||
|
||||
public Integer getGiftId() {
|
||||
public Long getGiftId() {
|
||||
return giftId;
|
||||
}
|
||||
|
||||
public void setGiftId(Integer giftId) {
|
||||
public void setGiftId(Long giftId) {
|
||||
this.giftId = giftId;
|
||||
}
|
||||
|
||||
|
|
|
@ -11,12 +11,12 @@ public class RechargeWithdrawCash {
|
|||
/**
|
||||
* 充值+提现id
|
||||
*/
|
||||
private Integer rechargeWithdrawCashId;
|
||||
private Long rechargeWithdrawCashId;
|
||||
|
||||
/**
|
||||
* 充值+提现用户id
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 充值+提现金额
|
||||
|
@ -31,21 +31,21 @@ public class RechargeWithdrawCash {
|
|||
/**
|
||||
* 状态:1:提现 2:充值+签到
|
||||
*/
|
||||
private Integer status;
|
||||
private Long status;
|
||||
|
||||
/**
|
||||
* 用户的实名认证和银行卡id
|
||||
*/
|
||||
private Integer certifiedBankCardId;
|
||||
private Long certifiedBankCardId;
|
||||
|
||||
public Integer getRechargeWithdrawCashId() {
|
||||
public Long getRechargeWithdrawCashId() {
|
||||
return rechargeWithdrawCashId;
|
||||
}
|
||||
|
||||
public RechargeWithdrawCash() {
|
||||
}
|
||||
|
||||
public RechargeWithdrawCash(Integer rechargeWithdrawCashId, Integer userId, BigDecimal money, Date time, Integer status, Integer certifiedBankCardId) {
|
||||
public RechargeWithdrawCash(Long rechargeWithdrawCashId, Long userId, BigDecimal money, Date time, Long status, Long certifiedBankCardId) {
|
||||
this.rechargeWithdrawCashId = rechargeWithdrawCashId;
|
||||
this.userId = userId;
|
||||
this.money = money;
|
||||
|
@ -54,15 +54,15 @@ public class RechargeWithdrawCash {
|
|||
this.certifiedBankCardId = certifiedBankCardId;
|
||||
}
|
||||
|
||||
public void setRechargeWithdrawCashId(Integer rechargeWithdrawCashId) {
|
||||
public void setRechargeWithdrawCashId(Long rechargeWithdrawCashId) {
|
||||
this.rechargeWithdrawCashId = rechargeWithdrawCashId;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
|
@ -82,19 +82,19 @@ public class RechargeWithdrawCash {
|
|||
this.time = time;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
public Long getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
public void setStatus(Long status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getCertifiedBankCardId() {
|
||||
public Long getCertifiedBankCardId() {
|
||||
return certifiedBankCardId;
|
||||
}
|
||||
|
||||
public void setCertifiedBankCardId(Integer certifiedBankCardId) {
|
||||
public void setCertifiedBankCardId(Long certifiedBankCardId) {
|
||||
this.certifiedBankCardId = certifiedBankCardId;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -8,98 +8,98 @@ public class Sign {
|
|||
/**
|
||||
* 签到id
|
||||
*/
|
||||
private Integer signId;
|
||||
private Long signId;
|
||||
|
||||
/**
|
||||
* 签到状态: 1、未签到 2、已签到
|
||||
*/
|
||||
private Integer signStatus;
|
||||
private Long signStatus;
|
||||
|
||||
/**
|
||||
* 是否首发病友圈:1、未首发 2、已首发
|
||||
*/
|
||||
private Integer firstPatientCircle;
|
||||
private Long firstPatientCircle;
|
||||
|
||||
/**
|
||||
* 是否病友圈首评:1、未评论 2、已评论
|
||||
*/
|
||||
private Integer firstReviewPatientCircle;
|
||||
private Long firstReviewPatientCircle;
|
||||
|
||||
/**
|
||||
* 是否完善信息:1、未完善 2、已完善
|
||||
*/
|
||||
private Integer perfectInformation;
|
||||
private Long perfectInformation;
|
||||
|
||||
/**
|
||||
* 是否参与健康评测:1、未参与 2、参与
|
||||
*/
|
||||
private Integer healthEvaluation;
|
||||
private Long healthEvaluation;
|
||||
|
||||
/**
|
||||
* 用户id: 患者、医生都可以
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
public Integer getSignId() {
|
||||
public Long getSignId() {
|
||||
return signId;
|
||||
}
|
||||
|
||||
public void setSignId(Integer signId) {
|
||||
public void setSignId(Long signId) {
|
||||
this.signId = signId;
|
||||
}
|
||||
|
||||
public Integer getSignStatus() {
|
||||
public Long getSignStatus() {
|
||||
return signStatus;
|
||||
}
|
||||
|
||||
public void setSignStatus(Integer signStatus) {
|
||||
public void setSignStatus(Long signStatus) {
|
||||
this.signStatus = signStatus;
|
||||
}
|
||||
|
||||
public Integer getFirstPatientCircle() {
|
||||
public Long getFirstPatientCircle() {
|
||||
return firstPatientCircle;
|
||||
}
|
||||
|
||||
public void setFirstPatientCircle(Integer firstPatientCircle) {
|
||||
public void setFirstPatientCircle(Long firstPatientCircle) {
|
||||
this.firstPatientCircle = firstPatientCircle;
|
||||
}
|
||||
|
||||
public Integer getFirstReviewPatientCircle() {
|
||||
public Long getFirstReviewPatientCircle() {
|
||||
return firstReviewPatientCircle;
|
||||
}
|
||||
|
||||
public void setFirstReviewPatientCircle(Integer firstReviewPatientCircle) {
|
||||
public void setFirstReviewPatientCircle(Long firstReviewPatientCircle) {
|
||||
this.firstReviewPatientCircle = firstReviewPatientCircle;
|
||||
}
|
||||
|
||||
public Integer getPerfectInformation() {
|
||||
public Long getPerfectInformation() {
|
||||
return perfectInformation;
|
||||
}
|
||||
|
||||
public void setPerfectInformation(Integer perfectInformation) {
|
||||
public void setPerfectInformation(Long perfectInformation) {
|
||||
this.perfectInformation = perfectInformation;
|
||||
}
|
||||
|
||||
public Integer getHealthEvaluation() {
|
||||
public Long getHealthEvaluation() {
|
||||
return healthEvaluation;
|
||||
}
|
||||
|
||||
public void setHealthEvaluation(Integer healthEvaluation) {
|
||||
public void setHealthEvaluation(Long healthEvaluation) {
|
||||
this.healthEvaluation = healthEvaluation;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Sign() {
|
||||
}
|
||||
|
||||
public Sign(Integer signId, Integer signStatus, Integer firstPatientCircle, Integer firstReviewPatientCircle, Integer perfectInformation, Integer healthEvaluation, Integer userId) {
|
||||
public Sign(Long signId, Long signStatus, Long firstPatientCircle, Long firstReviewPatientCircle, Long perfectInformation, Long healthEvaluation, Long userId) {
|
||||
this.signId = signId;
|
||||
this.signStatus = signStatus;
|
||||
this.firstPatientCircle = firstPatientCircle;
|
||||
|
|
|
@ -10,7 +10,7 @@ public class Title {
|
|||
/**
|
||||
* 标题id
|
||||
*/
|
||||
private Integer titleId;
|
||||
private Long titleId;
|
||||
|
||||
/**
|
||||
* 标题名称
|
||||
|
@ -32,11 +32,11 @@ public class Title {
|
|||
*/
|
||||
private String publishAuthorName;
|
||||
|
||||
public Integer getTitleId() {
|
||||
public Long getTitleId() {
|
||||
return titleId;
|
||||
}
|
||||
|
||||
public void setTitleId(Integer titleId) {
|
||||
public void setTitleId(Long titleId) {
|
||||
this.titleId = titleId;
|
||||
}
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ public class Gift {
|
|||
/**
|
||||
* 礼物id
|
||||
*/
|
||||
private Integer giftId;
|
||||
private Long giftId;
|
||||
|
||||
/**
|
||||
* 礼物名称
|
||||
|
@ -27,11 +27,11 @@ public class Gift {
|
|||
*/
|
||||
private BigDecimal giftPrice;
|
||||
|
||||
public Integer getGiftId() {
|
||||
public Long getGiftId() {
|
||||
return giftId;
|
||||
}
|
||||
|
||||
public void setGiftId(Integer giftId) {
|
||||
public void setGiftId(Long giftId) {
|
||||
this.giftId = giftId;
|
||||
}
|
||||
|
||||
|
@ -62,7 +62,7 @@ public class Gift {
|
|||
public Gift() {
|
||||
}
|
||||
|
||||
public Gift(Integer giftId, String giftName, String giftPhoto, BigDecimal giftPrice) {
|
||||
public Gift(Long giftId, String giftName, String giftPhoto, BigDecimal giftPrice) {
|
||||
this.giftId = giftId;
|
||||
this.giftName = giftName;
|
||||
this.giftPhoto = giftPhoto;
|
||||
|
|
|
@ -10,31 +10,31 @@ public class AdvisoryCollection {
|
|||
/**
|
||||
* 健康咨询收藏id
|
||||
*/
|
||||
private Integer advisoryCollectionId;
|
||||
private Long advisoryCollectionId;
|
||||
|
||||
/**
|
||||
* 咨询详情id
|
||||
*/
|
||||
private Integer consultationDetailsId;
|
||||
private Long consultationDetailsId;
|
||||
|
||||
/**
|
||||
* 收藏人id
|
||||
*/
|
||||
private Long userId;
|
||||
|
||||
public Integer getAdvisoryCollectionId() {
|
||||
public Long getAdvisoryCollectionId() {
|
||||
return advisoryCollectionId;
|
||||
}
|
||||
|
||||
public void setAdvisoryCollectionId(Integer advisoryCollectionId) {
|
||||
public void setAdvisoryCollectionId(Long advisoryCollectionId) {
|
||||
this.advisoryCollectionId = advisoryCollectionId;
|
||||
}
|
||||
|
||||
public Integer getConsultationDetailsId() {
|
||||
public Long getConsultationDetailsId() {
|
||||
return consultationDetailsId;
|
||||
}
|
||||
|
||||
public void setConsultationDetailsId(Integer consultationDetailsId) {
|
||||
public void setConsultationDetailsId(Long consultationDetailsId) {
|
||||
this.consultationDetailsId = consultationDetailsId;
|
||||
}
|
||||
|
||||
|
@ -49,7 +49,7 @@ public class AdvisoryCollection {
|
|||
public AdvisoryCollection() {
|
||||
}
|
||||
|
||||
public AdvisoryCollection(Integer advisoryCollectionId, Integer consultationDetailsId, Long userId) {
|
||||
public AdvisoryCollection(Long advisoryCollectionId, Long consultationDetailsId, Long userId) {
|
||||
this.advisoryCollectionId = advisoryCollectionId;
|
||||
this.consultationDetailsId = consultationDetailsId;
|
||||
this.userId = userId;
|
||||
|
|
|
@ -8,18 +8,18 @@ public class AutomaticResponse {
|
|||
/**
|
||||
* 自动回复id
|
||||
*/
|
||||
private Integer automaticResponseId;
|
||||
private Long automaticResponseId;
|
||||
|
||||
/**
|
||||
* 自动回复内容
|
||||
*/
|
||||
private String autoreplyContent;
|
||||
|
||||
public Integer getAutomaticResponseId() {
|
||||
public Long getAutomaticResponseId() {
|
||||
return automaticResponseId;
|
||||
}
|
||||
|
||||
public void setAutomaticResponseId(Integer automaticResponseId) {
|
||||
public void setAutomaticResponseId(Long automaticResponseId) {
|
||||
this.automaticResponseId = automaticResponseId;
|
||||
}
|
||||
|
||||
|
@ -34,7 +34,7 @@ public class AutomaticResponse {
|
|||
public AutomaticResponse() {
|
||||
}
|
||||
|
||||
public AutomaticResponse(Integer automaticResponseId, String autoreplyContent) {
|
||||
public AutomaticResponse(Long automaticResponseId, String autoreplyContent) {
|
||||
this.automaticResponseId = automaticResponseId;
|
||||
this.autoreplyContent = autoreplyContent;
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@ public class ConsultationDetails extends ConsultationDetailsType{
|
|||
/**
|
||||
* 健康咨询详情id
|
||||
*/
|
||||
private Integer consultationDetailsId;
|
||||
private Long consultationDetailsId;
|
||||
|
||||
/**
|
||||
* 健康咨询详情标题
|
||||
|
@ -20,7 +20,7 @@ public class ConsultationDetails extends ConsultationDetailsType{
|
|||
/**
|
||||
* 发布人
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 发布时间
|
||||
|
@ -35,18 +35,18 @@ public class ConsultationDetails extends ConsultationDetailsType{
|
|||
/**
|
||||
* 类型
|
||||
*/
|
||||
private Integer consultationDetailsTypeId;
|
||||
private Long consultationDetailsTypeId;
|
||||
|
||||
/**
|
||||
* 发布人名称
|
||||
*/
|
||||
private String username;
|
||||
|
||||
public Integer getConsultationDetailsId() {
|
||||
public Long getConsultationDetailsId() {
|
||||
return consultationDetailsId;
|
||||
}
|
||||
|
||||
public void setConsultationDetailsId(Integer consultationDetailsId) {
|
||||
public void setConsultationDetailsId(Long consultationDetailsId) {
|
||||
this.consultationDetailsId = consultationDetailsId;
|
||||
}
|
||||
|
||||
|
@ -58,11 +58,11 @@ public class ConsultationDetails extends ConsultationDetailsType{
|
|||
this.consultationDetailsTitle = consultationDetailsTitle;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
|
@ -82,11 +82,11 @@ public class ConsultationDetails extends ConsultationDetailsType{
|
|||
this.consultationDetailsContent = consultationDetailsContent;
|
||||
}
|
||||
|
||||
public Integer getConsultationDetailsTypeId() {
|
||||
public Long getConsultationDetailsTypeId() {
|
||||
return consultationDetailsTypeId;
|
||||
}
|
||||
|
||||
public void setConsultationDetailsTypeId(Integer consultationDetailsTypeId) {
|
||||
public void setConsultationDetailsTypeId(Long consultationDetailsTypeId) {
|
||||
this.consultationDetailsTypeId = consultationDetailsTypeId;
|
||||
}
|
||||
|
||||
|
@ -101,7 +101,7 @@ public class ConsultationDetails extends ConsultationDetailsType{
|
|||
public ConsultationDetails() {
|
||||
}
|
||||
|
||||
public ConsultationDetails(Integer consultationDetailsId, String consultationDetailsTitle, Integer userId, Date releaseTime, String consultationDetailsContent, Integer consultationDetailsTypeId, String username) {
|
||||
public ConsultationDetails(Long consultationDetailsId, String consultationDetailsTitle, Long userId, Date releaseTime, String consultationDetailsContent, Long consultationDetailsTypeId, String username) {
|
||||
this.consultationDetailsId = consultationDetailsId;
|
||||
this.consultationDetailsTitle = consultationDetailsTitle;
|
||||
this.userId = userId;
|
||||
|
|
|
@ -8,16 +8,16 @@ package com.four.common.duck.interrogation;
|
|||
**/
|
||||
public class ConsultationDetailsType {
|
||||
|
||||
private Integer consultationDetailsTypeId;
|
||||
private Long consultationDetailsTypeId;
|
||||
|
||||
private String consultationDetailsTypeName;
|
||||
|
||||
|
||||
public Integer getConsultationDetailsTypeId() {
|
||||
public Long getConsultationDetailsTypeId() {
|
||||
return consultationDetailsTypeId;
|
||||
}
|
||||
|
||||
public void setConsultationDetailsTypeId(Integer consultationDetailsTypeId) {
|
||||
public void setConsultationDetailsTypeId(Long consultationDetailsTypeId) {
|
||||
this.consultationDetailsTypeId = consultationDetailsTypeId;
|
||||
}
|
||||
|
||||
|
@ -32,7 +32,7 @@ public class ConsultationDetailsType {
|
|||
public ConsultationDetailsType() {
|
||||
}
|
||||
|
||||
public ConsultationDetailsType(Integer consultationDetailsTypeId, String consultationDetailsTypeName) {
|
||||
public ConsultationDetailsType(Long consultationDetailsTypeId, String consultationDetailsTypeName) {
|
||||
this.consultationDetailsTypeId = consultationDetailsTypeId;
|
||||
this.consultationDetailsTypeName = consultationDetailsTypeName;
|
||||
}
|
||||
|
|
|
@ -8,46 +8,46 @@ public class FollowDoctor {
|
|||
/**
|
||||
* 关注医生id
|
||||
*/
|
||||
private Integer followDoctorId;
|
||||
private Long followDoctorId;
|
||||
|
||||
/**
|
||||
* 关注人id
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 医生注册信息id
|
||||
*/
|
||||
private Integer registrationInformationId;
|
||||
private Long registrationInformationId;
|
||||
|
||||
public Integer getFollowDoctorId() {
|
||||
public Long getFollowDoctorId() {
|
||||
return followDoctorId;
|
||||
}
|
||||
|
||||
public void setFollowDoctorId(Integer followDoctorId) {
|
||||
public void setFollowDoctorId(Long followDoctorId) {
|
||||
this.followDoctorId = followDoctorId;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public Integer getRegistrationInformationId() {
|
||||
public Long getRegistrationInformationId() {
|
||||
return registrationInformationId;
|
||||
}
|
||||
|
||||
public void setRegistrationInformationId(Integer registrationInformationId) {
|
||||
public void setRegistrationInformationId(Long registrationInformationId) {
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
}
|
||||
|
||||
public FollowDoctor() {
|
||||
}
|
||||
|
||||
public FollowDoctor(Integer followDoctorId, Integer userId, Integer registrationInformationId) {
|
||||
public FollowDoctor(Long followDoctorId, Long userId, Long registrationInformationId) {
|
||||
this.followDoctorId = followDoctorId;
|
||||
this.userId = userId;
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
|
|
|
@ -8,59 +8,59 @@ public class HistoricalConsultation {
|
|||
/**
|
||||
* 历史问诊id
|
||||
*/
|
||||
private Integer historicalConsultationId;
|
||||
private Long historicalConsultationId;
|
||||
|
||||
/**
|
||||
* 患者id
|
||||
*/
|
||||
private Integer patientId;
|
||||
private Long patientId;
|
||||
|
||||
/**
|
||||
* 医生注册信息id
|
||||
*/
|
||||
private Integer registrationInformationId;
|
||||
private Long registrationInformationId;
|
||||
|
||||
/**
|
||||
* 状态1:正在问诊2:结束问诊
|
||||
*/
|
||||
private Integer historicalConsultationStatus;
|
||||
private Long historicalConsultationStatus;
|
||||
|
||||
public Integer getHistoricalConsultationId() {
|
||||
public Long getHistoricalConsultationId() {
|
||||
return historicalConsultationId;
|
||||
}
|
||||
|
||||
public void setHistoricalConsultationId(Integer historicalConsultationId) {
|
||||
public void setHistoricalConsultationId(Long historicalConsultationId) {
|
||||
this.historicalConsultationId = historicalConsultationId;
|
||||
}
|
||||
|
||||
public Integer getPatientId() {
|
||||
public Long getPatientId() {
|
||||
return patientId;
|
||||
}
|
||||
|
||||
public void setPatientId(Integer patientId) {
|
||||
public void setPatientId(Long patientId) {
|
||||
this.patientId = patientId;
|
||||
}
|
||||
|
||||
public Integer getRegistrationInformationId() {
|
||||
public Long getRegistrationInformationId() {
|
||||
return registrationInformationId;
|
||||
}
|
||||
|
||||
public void setRegistrationInformationId(Integer registrationInformationId) {
|
||||
public void setRegistrationInformationId(Long registrationInformationId) {
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
}
|
||||
|
||||
public Integer getHistoricalConsultationStatus() {
|
||||
public Long getHistoricalConsultationStatus() {
|
||||
return historicalConsultationStatus;
|
||||
}
|
||||
|
||||
public void setHistoricalConsultationStatus(Integer historicalConsultationStatus) {
|
||||
public void setHistoricalConsultationStatus(Long historicalConsultationStatus) {
|
||||
this.historicalConsultationStatus = historicalConsultationStatus;
|
||||
}
|
||||
|
||||
public HistoricalConsultation() {
|
||||
}
|
||||
|
||||
public HistoricalConsultation(Integer historicalConsultationId, Integer patientId, Integer registrationInformationId, Integer historicalConsultationStatus) {
|
||||
public HistoricalConsultation(Long historicalConsultationId, Long patientId, Long registrationInformationId, Long historicalConsultationStatus) {
|
||||
this.historicalConsultationId = historicalConsultationId;
|
||||
this.patientId = patientId;
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
|
|
|
@ -10,17 +10,17 @@ public class PatientEvaluator {
|
|||
/**
|
||||
* 患者评价医生问诊id
|
||||
*/
|
||||
private Integer patientEvaluatorId;
|
||||
private Long patientEvaluatorId;
|
||||
|
||||
/**
|
||||
* 患者评论id
|
||||
*/
|
||||
private Integer patientId;
|
||||
private Long patientId;
|
||||
|
||||
/**
|
||||
* 医生注册信息id
|
||||
*/
|
||||
private Integer registrationInformationId;
|
||||
private Long registrationInformationId;
|
||||
|
||||
/**
|
||||
* 评论内容
|
||||
|
@ -32,27 +32,27 @@ public class PatientEvaluator {
|
|||
*/
|
||||
private Date commentTime;
|
||||
|
||||
public Integer getPatientEvaluatorId() {
|
||||
public Long getPatientEvaluatorId() {
|
||||
return patientEvaluatorId;
|
||||
}
|
||||
|
||||
public void setPatientEvaluatorId(Integer patientEvaluatorId) {
|
||||
public void setPatientEvaluatorId(Long patientEvaluatorId) {
|
||||
this.patientEvaluatorId = patientEvaluatorId;
|
||||
}
|
||||
|
||||
public Integer getPatientId() {
|
||||
public Long getPatientId() {
|
||||
return patientId;
|
||||
}
|
||||
|
||||
public void setPatientId(Integer patientId) {
|
||||
public void setPatientId(Long patientId) {
|
||||
this.patientId = patientId;
|
||||
}
|
||||
|
||||
public Integer getRegistrationInformationId() {
|
||||
public Long getRegistrationInformationId() {
|
||||
return registrationInformationId;
|
||||
}
|
||||
|
||||
public void setRegistrationInformationId(Integer registrationInformationId) {
|
||||
public void setRegistrationInformationId(Long registrationInformationId) {
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
}
|
||||
|
||||
|
@ -75,7 +75,7 @@ public class PatientEvaluator {
|
|||
public PatientEvaluator() {
|
||||
}
|
||||
|
||||
public PatientEvaluator(Integer patientEvaluatorId, Integer patientId, Integer registrationInformationId, String commentContent, Date commentTime) {
|
||||
public PatientEvaluator(Long patientEvaluatorId, Long patientId, Long registrationInformationId, String commentContent, Date commentTime) {
|
||||
this.patientEvaluatorId = patientEvaluatorId;
|
||||
this.patientId = patientId;
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
|
|
|
@ -8,18 +8,18 @@ public class ProfessionalTitleDoctor {
|
|||
/**
|
||||
* 医生职称id
|
||||
*/
|
||||
private Integer professionalTitleDoctorId;
|
||||
private Long professionalTitleDoctorId;
|
||||
|
||||
/**
|
||||
* 医生职称名称
|
||||
*/
|
||||
private String professionalTitleDoctorName;
|
||||
|
||||
public Integer getProfessionalTitleDoctorId() {
|
||||
public Long getProfessionalTitleDoctorId() {
|
||||
return professionalTitleDoctorId;
|
||||
}
|
||||
|
||||
public void setProfessionalTitleDoctorId(Integer professionalTitleDoctorId) {
|
||||
public void setProfessionalTitleDoctorId(Long professionalTitleDoctorId) {
|
||||
this.professionalTitleDoctorId = professionalTitleDoctorId;
|
||||
}
|
||||
|
||||
|
@ -34,7 +34,7 @@ public class ProfessionalTitleDoctor {
|
|||
public ProfessionalTitleDoctor() {
|
||||
}
|
||||
|
||||
public ProfessionalTitleDoctor(Integer professionalTitleDoctorId, String professionalTitleDoctorName) {
|
||||
public ProfessionalTitleDoctor(Long professionalTitleDoctorId, String professionalTitleDoctorName) {
|
||||
this.professionalTitleDoctorId = professionalTitleDoctorId;
|
||||
this.professionalTitleDoctorName = professionalTitleDoctorName;
|
||||
}
|
||||
|
|
|
@ -57,7 +57,7 @@ public class RegistrationInformation {
|
|||
/**
|
||||
* 服务患者次数
|
||||
*/
|
||||
private Integer numberPatientsServed;
|
||||
private Long numberPatientsServed;
|
||||
|
||||
/**
|
||||
* 咨询价格
|
||||
|
@ -67,17 +67,17 @@ public class RegistrationInformation {
|
|||
/**
|
||||
* 好评人数
|
||||
*/
|
||||
private Integer praise;
|
||||
private Long praise;
|
||||
|
||||
/**
|
||||
* 审核状态:1:待审核2:审核通过3:已驳回
|
||||
*/
|
||||
private Integer registrationInformationExamineStatus;
|
||||
private Long registrationInformationExamineStatus;
|
||||
|
||||
/**
|
||||
* 医生的状态:1:在线2:离线
|
||||
*/
|
||||
private Integer registrationInformationMedicStatus;
|
||||
private Long registrationInformationMedicStatus;
|
||||
|
||||
/**
|
||||
* 构造函数、getter、setter。。
|
||||
|
@ -177,11 +177,11 @@ public class RegistrationInformation {
|
|||
this.registrationTime = registrationTime;
|
||||
}
|
||||
|
||||
public Integer getNumberPatientsServed() {
|
||||
public Long getNumberPatientsServed() {
|
||||
return numberPatientsServed;
|
||||
}
|
||||
|
||||
public void setNumberPatientsServed(Integer numberPatientsServed) {
|
||||
public void setNumberPatientsServed(Long numberPatientsServed) {
|
||||
this.numberPatientsServed = numberPatientsServed;
|
||||
}
|
||||
|
||||
|
@ -193,31 +193,31 @@ public class RegistrationInformation {
|
|||
this.consultingPrice = consultingPrice;
|
||||
}
|
||||
|
||||
public Integer getPraise() {
|
||||
public Long getPraise() {
|
||||
return praise;
|
||||
}
|
||||
|
||||
public void setPraise(Integer praise) {
|
||||
public void setPraise(Long praise) {
|
||||
this.praise = praise;
|
||||
}
|
||||
|
||||
public Integer getRegistrationInformationExamineStatus() {
|
||||
public Long getRegistrationInformationExamineStatus() {
|
||||
return registrationInformationExamineStatus;
|
||||
}
|
||||
|
||||
public void setRegistrationInformationExamineStatus(Integer registrationInformationExamineStatus) {
|
||||
public void setRegistrationInformationExamineStatus(Long registrationInformationExamineStatus) {
|
||||
this.registrationInformationExamineStatus = registrationInformationExamineStatus;
|
||||
}
|
||||
|
||||
public Integer getRegistrationInformationMedicStatus() {
|
||||
public Long getRegistrationInformationMedicStatus() {
|
||||
return registrationInformationMedicStatus;
|
||||
}
|
||||
|
||||
public void setRegistrationInformationMedicStatus(Integer registrationInformationMedicStatus) {
|
||||
public void setRegistrationInformationMedicStatus(Long registrationInformationMedicStatus) {
|
||||
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
|
||||
}
|
||||
|
||||
public RegistrationInformation(Long registrationInformationId, Long userId, String realName, String affiliatedHospital, Long medicalDepartmentId, Long professionalTitleDoctorId, String personalResume, String areaExpertise, Date registrationTime, Integer numberPatientsServed, BigDecimal consultingPrice, Integer praise, Integer registrationInformationExamineStatus, Integer registrationInformationMedicStatus) {
|
||||
public RegistrationInformation(Long registrationInformationId, Long userId, String realName, String affiliatedHospital, Long medicalDepartmentId, Long professionalTitleDoctorId, String personalResume, String areaExpertise, Date registrationTime, Long numberPatientsServed, BigDecimal consultingPrice, Long praise, Long registrationInformationExamineStatus, Long registrationInformationMedicStatus) {
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
this.userId = userId;
|
||||
this.realName = realName;
|
||||
|
|
|
@ -8,46 +8,46 @@ public class SetAutoReply {
|
|||
/**
|
||||
* 设置自动回复id
|
||||
*/
|
||||
private Integer setAutoReplyId;
|
||||
private Long setAutoReplyId;
|
||||
|
||||
/**
|
||||
* 医生注册信息id
|
||||
*/
|
||||
private Integer registrationInformationId;
|
||||
private Long registrationInformationId;
|
||||
|
||||
/**
|
||||
* 自动回复id
|
||||
*/
|
||||
private Integer automaticResponseId;
|
||||
private Long automaticResponseId;
|
||||
|
||||
public SetAutoReply() {
|
||||
}
|
||||
|
||||
public Integer getSetAutoReplyId() {
|
||||
public Long getSetAutoReplyId() {
|
||||
return setAutoReplyId;
|
||||
}
|
||||
|
||||
public void setSetAutoReplyId(Integer setAutoReplyId) {
|
||||
public void setSetAutoReplyId(Long setAutoReplyId) {
|
||||
this.setAutoReplyId = setAutoReplyId;
|
||||
}
|
||||
|
||||
public Integer getRegistrationInformationId() {
|
||||
public Long getRegistrationInformationId() {
|
||||
return registrationInformationId;
|
||||
}
|
||||
|
||||
public void setRegistrationInformationId(Integer registrationInformationId) {
|
||||
public void setRegistrationInformationId(Long registrationInformationId) {
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
}
|
||||
|
||||
public Integer getAutomaticResponseId() {
|
||||
public Long getAutomaticResponseId() {
|
||||
return automaticResponseId;
|
||||
}
|
||||
|
||||
public void setAutomaticResponseId(Integer automaticResponseId) {
|
||||
public void setAutomaticResponseId(Long automaticResponseId) {
|
||||
this.automaticResponseId = automaticResponseId;
|
||||
}
|
||||
|
||||
public SetAutoReply(Integer setAutoReplyId, Integer registrationInformationId, Integer automaticResponseId) {
|
||||
public SetAutoReply(Long setAutoReplyId, Long registrationInformationId, Long automaticResponseId) {
|
||||
this.setAutoReplyId = setAutoReplyId;
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
this.automaticResponseId = automaticResponseId;
|
||||
|
|
|
@ -14,12 +14,12 @@ public class MyFile {
|
|||
/**
|
||||
* 我的档案id
|
||||
*/
|
||||
private Integer myFileId;
|
||||
private Long myFileId;
|
||||
|
||||
/**
|
||||
* 主要症状
|
||||
*/
|
||||
private Integer id;
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 现病史
|
||||
|
@ -59,21 +59,21 @@ public class MyFile {
|
|||
/**
|
||||
* 用户id
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
public Integer getMyFileId() {
|
||||
public Long getMyFileId() {
|
||||
return myFileId;
|
||||
}
|
||||
|
||||
public void setMyFileId(Integer myFileId) {
|
||||
public void setMyFileId(Long myFileId) {
|
||||
this.myFileId = myFileId;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
|
@ -133,18 +133,18 @@ public class MyFile {
|
|||
this.relatedPic = relatedPic;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public MyFile() {
|
||||
}
|
||||
|
||||
public MyFile(Integer myFileId, Integer id, String presentMedicalHistory, String pastMedicalHistory, String treatmentExperienceLast, Date startTime, Date endTime, String therapeuticProcess, String relatedPic, Integer userId) {
|
||||
public MyFile(Long myFileId, Long id, String presentMedicalHistory, String pastMedicalHistory, String treatmentExperienceLast, Date startTime, Date endTime, String therapeuticProcess, String relatedPic, Long userId) {
|
||||
this.myFileId = myFileId;
|
||||
this.id = id;
|
||||
this.presentMedicalHistory = presentMedicalHistory;
|
||||
|
|
|
@ -11,7 +11,7 @@ public class User {
|
|||
/**
|
||||
* 用户id
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 用户名称
|
||||
|
@ -56,17 +56,17 @@ public class User {
|
|||
/**
|
||||
* 绑定微信状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer bindWechatStatus;
|
||||
private Long bindWechatStatus;
|
||||
|
||||
/**
|
||||
* 实名认证状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer realNameAuthenticationStatus;
|
||||
private Long realNameAuthenticationStatus;
|
||||
|
||||
/**
|
||||
* 绑定银行卡状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer bindBankCardStatus;
|
||||
private Long bindBankCardStatus;
|
||||
|
||||
/**
|
||||
* 余额
|
||||
|
@ -82,17 +82,17 @@ public class User {
|
|||
* 状态1:患者 2:医生
|
||||
* @return
|
||||
*/
|
||||
private Integer differentialState;
|
||||
private Long differentialState;
|
||||
|
||||
public Integer getDifferentialState() {
|
||||
public Long getDifferentialState() {
|
||||
return differentialState;
|
||||
}
|
||||
|
||||
public void setDifferentialState(Integer differentialState) {
|
||||
public void setDifferentialState(Long differentialState) {
|
||||
this.differentialState = differentialState;
|
||||
}
|
||||
|
||||
public User(Integer userId, String username, String password, String userEmail, String userPhone, String userAvatar, String userSex, String userSign, Date registrationTime, Integer bindWechatStatus, Integer realNameAuthenticationStatus, Integer bindBankCardStatus, BigDecimal userMoney, String invitationCode, Integer differentialState) {
|
||||
public User(Long userId, String username, String password, String userEmail, String userPhone, String userAvatar, String userSex, String userSign, Date registrationTime, Long bindWechatStatus, Long realNameAuthenticationStatus, Long bindBankCardStatus, BigDecimal userMoney, String invitationCode, Long differentialState) {
|
||||
this.userId = userId;
|
||||
this.username = username;
|
||||
this.password = password;
|
||||
|
@ -110,11 +110,11 @@ public class User {
|
|||
this.differentialState = differentialState;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
|
@ -182,27 +182,27 @@ public class User {
|
|||
this.registrationTime = registrationTime;
|
||||
}
|
||||
|
||||
public Integer getBindWechatStatus() {
|
||||
public Long getBindWechatStatus() {
|
||||
return bindWechatStatus;
|
||||
}
|
||||
|
||||
public void setBindWechatStatus(Integer bindWechatStatus) {
|
||||
public void setBindWechatStatus(Long bindWechatStatus) {
|
||||
this.bindWechatStatus = bindWechatStatus;
|
||||
}
|
||||
|
||||
public Integer getRealNameAuthenticationStatus() {
|
||||
public Long getRealNameAuthenticationStatus() {
|
||||
return realNameAuthenticationStatus;
|
||||
}
|
||||
|
||||
public void setRealNameAuthenticationStatus(Integer realNameAuthenticationStatus) {
|
||||
public void setRealNameAuthenticationStatus(Long realNameAuthenticationStatus) {
|
||||
this.realNameAuthenticationStatus = realNameAuthenticationStatus;
|
||||
}
|
||||
|
||||
public Integer getBindBankCardStatus() {
|
||||
public Long getBindBankCardStatus() {
|
||||
return bindBankCardStatus;
|
||||
}
|
||||
|
||||
public void setBindBankCardStatus(Integer bindBankCardStatus) {
|
||||
public void setBindBankCardStatus(Long bindBankCardStatus) {
|
||||
this.bindBankCardStatus = bindBankCardStatus;
|
||||
}
|
||||
|
||||
|
@ -225,7 +225,7 @@ public class User {
|
|||
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) {
|
||||
public User(Long userId, String username, String password, String userEmail, String userPhone, String userAvatar, String userSex, String userSign, Date registrationTime, Long bindWechatStatus, Long realNameAuthenticationStatus, Long bindBankCardStatus, BigDecimal userMoney, String invitationCode) {
|
||||
this.userId = userId;
|
||||
this.username = username;
|
||||
this.password = password;
|
||||
|
|
|
@ -11,12 +11,12 @@ public class DrugDetailsRequest {
|
|||
/**
|
||||
* 药品详情id
|
||||
*/
|
||||
private Integer drugDetailsId;
|
||||
private Long drugDetailsId;
|
||||
|
||||
/**
|
||||
* 常见病症+常见药品表id
|
||||
*/
|
||||
private Integer id;
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 药品成分
|
||||
|
@ -61,22 +61,22 @@ public class DrugDetailsRequest {
|
|||
/**
|
||||
* 与id关联
|
||||
*/
|
||||
private Integer pid;
|
||||
private Long pid;
|
||||
|
||||
|
||||
public Integer getDrugDetailsId() {
|
||||
public Long getDrugDetailsId() {
|
||||
return drugDetailsId;
|
||||
}
|
||||
|
||||
public void setDrugDetailsId(Integer drugDetailsId) {
|
||||
public void setDrugDetailsId(Long drugDetailsId) {
|
||||
this.drugDetailsId = drugDetailsId;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
|
@ -144,18 +144,18 @@ public class DrugDetailsRequest {
|
|||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getPid() {
|
||||
public Long getPid() {
|
||||
return pid;
|
||||
}
|
||||
|
||||
public void setPid(Integer pid) {
|
||||
public void setPid(Long pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
public DrugDetailsRequest() {
|
||||
}
|
||||
|
||||
public DrugDetailsRequest(Integer drugDetailsId, Integer id, String pharmaceuticalIngredient, String drugContraindication, String functionalIndications, String usageDosage, String drugCharacter, String packingSpecification, String adverseReaction, String name, Integer pid) {
|
||||
public DrugDetailsRequest(Long drugDetailsId, Long id, String pharmaceuticalIngredient, String drugContraindication, String functionalIndications, String usageDosage, String drugCharacter, String packingSpecification, String adverseReaction, String name, Long pid) {
|
||||
this.drugDetailsId = drugDetailsId;
|
||||
this.id = id;
|
||||
this.pharmaceuticalIngredient = pharmaceuticalIngredient;
|
||||
|
|
|
@ -12,12 +12,12 @@ public class PathologicalDetailsRequest {
|
|||
/**
|
||||
* 病症详情id
|
||||
*/
|
||||
private Integer detailsSymptomsId;
|
||||
private Long detailsSymptomsId;
|
||||
|
||||
/**
|
||||
* 常见病症+常见药品id
|
||||
*/
|
||||
private Integer id;
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 病理
|
||||
|
@ -47,22 +47,22 @@ public class PathologicalDetailsRequest {
|
|||
/**
|
||||
* 与id关联
|
||||
*/
|
||||
private Integer pid;
|
||||
private Long pid;
|
||||
|
||||
|
||||
public Integer getDetailsSymptomsId() {
|
||||
public Long getDetailsSymptomsId() {
|
||||
return detailsSymptomsId;
|
||||
}
|
||||
|
||||
public void setDetailsSymptomsId(Integer detailsSymptomsId) {
|
||||
public void setDetailsSymptomsId(Long detailsSymptomsId) {
|
||||
this.detailsSymptomsId = detailsSymptomsId;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
|
@ -106,18 +106,18 @@ public class PathologicalDetailsRequest {
|
|||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getPid() {
|
||||
public Long getPid() {
|
||||
return pid;
|
||||
}
|
||||
|
||||
public void setPid(Integer pid) {
|
||||
public void setPid(Long pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
public PathologicalDetailsRequest() {
|
||||
}
|
||||
|
||||
public PathologicalDetailsRequest(Integer detailsSymptomsId, Integer id, String pathology, String symptom, String prosCons, String heal, String name, Integer pid) {
|
||||
public PathologicalDetailsRequest(Long detailsSymptomsId, Long id, String pathology, String symptom, String prosCons, String heal, String name, Long pid) {
|
||||
this.detailsSymptomsId = detailsSymptomsId;
|
||||
this.id = id;
|
||||
this.pathology = pathology;
|
||||
|
|
|
@ -13,12 +13,12 @@ public class RechargeWithdrawCashRequest {
|
|||
/**
|
||||
* 充值+提现id
|
||||
*/
|
||||
private Integer rechargeWithdrawCashId;
|
||||
private Long rechargeWithdrawCashId;
|
||||
|
||||
/**
|
||||
* 充值+提现用户id
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 充值+提现金额
|
||||
|
@ -33,12 +33,12 @@ public class RechargeWithdrawCashRequest {
|
|||
/**
|
||||
* 状态:1:提现 2:充值+签到
|
||||
*/
|
||||
private Integer status;
|
||||
private Long status;
|
||||
|
||||
/**
|
||||
* 用户的实名认证和银行卡id
|
||||
*/
|
||||
private Integer certifiedBankCardId;
|
||||
private Long certifiedBankCardId;
|
||||
|
||||
/**
|
||||
* 用户名称
|
||||
|
@ -48,17 +48,17 @@ public class RechargeWithdrawCashRequest {
|
|||
/**
|
||||
* 绑定微信状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer bindWechatStatus;
|
||||
private Long bindWechatStatus;
|
||||
|
||||
/**
|
||||
* 实名认证状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer realNameAuthenticationStatus;
|
||||
private Long realNameAuthenticationStatus;
|
||||
|
||||
/**
|
||||
* 绑定银行卡状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer bindBankCardStatus;
|
||||
private Long bindBankCardStatus;
|
||||
|
||||
/**
|
||||
* 余额
|
||||
|
@ -68,7 +68,7 @@ public class RechargeWithdrawCashRequest {
|
|||
/**
|
||||
* 身份证号
|
||||
*/
|
||||
private Integer idNumber;
|
||||
private Long idNumber;
|
||||
|
||||
/**
|
||||
* 开户行:银行名称
|
||||
|
@ -80,19 +80,19 @@ public class RechargeWithdrawCashRequest {
|
|||
*/
|
||||
private String bankCardNumber;
|
||||
|
||||
public Integer getRechargeWithdrawCashId() {
|
||||
public Long getRechargeWithdrawCashId() {
|
||||
return rechargeWithdrawCashId;
|
||||
}
|
||||
|
||||
public void setRechargeWithdrawCashId(Integer rechargeWithdrawCashId) {
|
||||
public void setRechargeWithdrawCashId(Long rechargeWithdrawCashId) {
|
||||
this.rechargeWithdrawCashId = rechargeWithdrawCashId;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
|
@ -112,19 +112,19 @@ public class RechargeWithdrawCashRequest {
|
|||
this.time = time;
|
||||
}
|
||||
|
||||
public Integer getStatus() {
|
||||
public Long getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(Integer status) {
|
||||
public void setStatus(Long status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public Integer getCertifiedBankCardId() {
|
||||
public Long getCertifiedBankCardId() {
|
||||
return certifiedBankCardId;
|
||||
}
|
||||
|
||||
public void setCertifiedBankCardId(Integer certifiedBankCardId) {
|
||||
public void setCertifiedBankCardId(Long certifiedBankCardId) {
|
||||
this.certifiedBankCardId = certifiedBankCardId;
|
||||
}
|
||||
|
||||
|
@ -136,27 +136,27 @@ public class RechargeWithdrawCashRequest {
|
|||
this.userName = userName;
|
||||
}
|
||||
|
||||
public Integer getBindWechatStatus() {
|
||||
public Long getBindWechatStatus() {
|
||||
return bindWechatStatus;
|
||||
}
|
||||
|
||||
public void setBindWechatStatus(Integer bindWechatStatus) {
|
||||
public void setBindWechatStatus(Long bindWechatStatus) {
|
||||
this.bindWechatStatus = bindWechatStatus;
|
||||
}
|
||||
|
||||
public Integer getRealNameAuthenticationStatus() {
|
||||
public Long getRealNameAuthenticationStatus() {
|
||||
return realNameAuthenticationStatus;
|
||||
}
|
||||
|
||||
public void setRealNameAuthenticationStatus(Integer realNameAuthenticationStatus) {
|
||||
public void setRealNameAuthenticationStatus(Long realNameAuthenticationStatus) {
|
||||
this.realNameAuthenticationStatus = realNameAuthenticationStatus;
|
||||
}
|
||||
|
||||
public Integer getBindBankCardStatus() {
|
||||
public Long getBindBankCardStatus() {
|
||||
return bindBankCardStatus;
|
||||
}
|
||||
|
||||
public void setBindBankCardStatus(Integer bindBankCardStatus) {
|
||||
public void setBindBankCardStatus(Long bindBankCardStatus) {
|
||||
this.bindBankCardStatus = bindBankCardStatus;
|
||||
}
|
||||
|
||||
|
@ -168,11 +168,11 @@ public class RechargeWithdrawCashRequest {
|
|||
this.userMoney = userMoney;
|
||||
}
|
||||
|
||||
public Integer getIdNumber() {
|
||||
public Long getIdNumber() {
|
||||
return idNumber;
|
||||
}
|
||||
|
||||
public void setIdNumber(Integer idNumber) {
|
||||
public void setIdNumber(Long idNumber) {
|
||||
this.idNumber = idNumber;
|
||||
}
|
||||
|
||||
|
@ -195,7 +195,7 @@ public class RechargeWithdrawCashRequest {
|
|||
public RechargeWithdrawCashRequest() {
|
||||
}
|
||||
|
||||
public RechargeWithdrawCashRequest(Integer rechargeWithdrawCashId, Integer userId, BigDecimal money, Date time, Integer status, Integer certifiedBankCardId, String userName, Integer bindWechatStatus, Integer realNameAuthenticationStatus, Integer bindBankCardStatus, BigDecimal userMoney, Integer idNumber, String bankName, String bankCardNumber) {
|
||||
public RechargeWithdrawCashRequest(Long rechargeWithdrawCashId, Long userId, BigDecimal money, Date time, Long status, Long certifiedBankCardId, String userName, Long bindWechatStatus, Long realNameAuthenticationStatus, Long bindBankCardStatus, BigDecimal userMoney, Long idNumber, String bankName, String bankCardNumber) {
|
||||
this.rechargeWithdrawCashId = rechargeWithdrawCashId;
|
||||
this.userId = userId;
|
||||
this.money = money;
|
||||
|
|
|
@ -14,7 +14,7 @@ public class RegistrationInformationRequest {
|
|||
/**
|
||||
* 医生注册信息id
|
||||
*/
|
||||
private Integer registrationInformationId;
|
||||
private Long registrationInformationId;
|
||||
|
||||
/**
|
||||
* 真实姓名
|
||||
|
@ -29,12 +29,12 @@ public class RegistrationInformationRequest {
|
|||
/**
|
||||
* 医生科室id
|
||||
*/
|
||||
private Integer medicalDepartmentId;
|
||||
private Long medicalDepartmentId;
|
||||
|
||||
/**
|
||||
* 医生职称id
|
||||
*/
|
||||
private Integer professionalTitleDoctorId;
|
||||
private Long professionalTitleDoctorId;
|
||||
|
||||
/**
|
||||
* 个人简历
|
||||
|
@ -64,17 +64,17 @@ public class RegistrationInformationRequest {
|
|||
/**
|
||||
* 好评人数
|
||||
*/
|
||||
private Integer praise;
|
||||
private Long praise;
|
||||
|
||||
/**
|
||||
* 审核状态:1:待审核2:审核通过3:已驳回
|
||||
*/
|
||||
private Integer registrationInformationExamineStatus;
|
||||
private Long registrationInformationExamineStatus;
|
||||
|
||||
/**
|
||||
* 医生的状态:1:在线2:离线
|
||||
*/
|
||||
private Integer registrationInformationMedicStatus;
|
||||
private Long registrationInformationMedicStatus;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
|
@ -84,18 +84,18 @@ public class RegistrationInformationRequest {
|
|||
/**
|
||||
* 与id关联
|
||||
*/
|
||||
private Integer pid;
|
||||
private Long pid;
|
||||
|
||||
/**
|
||||
* 医生职称名称
|
||||
*/
|
||||
private String professionalTitleDoctorName;
|
||||
|
||||
public Integer getRegistrationInformationId() {
|
||||
public Long getRegistrationInformationId() {
|
||||
return registrationInformationId;
|
||||
}
|
||||
|
||||
public void setRegistrationInformationId(Integer registrationInformationId) {
|
||||
public void setRegistrationInformationId(Long registrationInformationId) {
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
}
|
||||
|
||||
|
@ -115,19 +115,19 @@ public class RegistrationInformationRequest {
|
|||
this.affiliatedHospital = affiliatedHospital;
|
||||
}
|
||||
|
||||
public Integer getMedicalDepartmentId() {
|
||||
public Long getMedicalDepartmentId() {
|
||||
return medicalDepartmentId;
|
||||
}
|
||||
|
||||
public void setMedicalDepartmentId(Integer medicalDepartmentId) {
|
||||
public void setMedicalDepartmentId(Long medicalDepartmentId) {
|
||||
this.medicalDepartmentId = medicalDepartmentId;
|
||||
}
|
||||
|
||||
public Integer getProfessionalTitleDoctorId() {
|
||||
public Long getProfessionalTitleDoctorId() {
|
||||
return professionalTitleDoctorId;
|
||||
}
|
||||
|
||||
public void setProfessionalTitleDoctorId(Integer professionalTitleDoctorId) {
|
||||
public void setProfessionalTitleDoctorId(Long professionalTitleDoctorId) {
|
||||
this.professionalTitleDoctorId = professionalTitleDoctorId;
|
||||
}
|
||||
|
||||
|
@ -171,27 +171,27 @@ public class RegistrationInformationRequest {
|
|||
this.consultingPrice = consultingPrice;
|
||||
}
|
||||
|
||||
public Integer getPraise() {
|
||||
public Long getPraise() {
|
||||
return praise;
|
||||
}
|
||||
|
||||
public void setPraise(Integer praise) {
|
||||
public void setPraise(Long praise) {
|
||||
this.praise = praise;
|
||||
}
|
||||
|
||||
public Integer getRegistrationInformationExamineStatus() {
|
||||
public Long getRegistrationInformationExamineStatus() {
|
||||
return registrationInformationExamineStatus;
|
||||
}
|
||||
|
||||
public void setRegistrationInformationExamineStatus(Integer registrationInformationExamineStatus) {
|
||||
public void setRegistrationInformationExamineStatus(Long registrationInformationExamineStatus) {
|
||||
this.registrationInformationExamineStatus = registrationInformationExamineStatus;
|
||||
}
|
||||
|
||||
public Integer getRegistrationInformationMedicStatus() {
|
||||
public Long getRegistrationInformationMedicStatus() {
|
||||
return registrationInformationMedicStatus;
|
||||
}
|
||||
|
||||
public void setRegistrationInformationMedicStatus(Integer registrationInformationMedicStatus) {
|
||||
public void setRegistrationInformationMedicStatus(Long registrationInformationMedicStatus) {
|
||||
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
|
||||
}
|
||||
|
||||
|
@ -203,11 +203,11 @@ public class RegistrationInformationRequest {
|
|||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getPid() {
|
||||
public Long getPid() {
|
||||
return pid;
|
||||
}
|
||||
|
||||
public void setPid(Integer pid) {
|
||||
public void setPid(Long pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
|
@ -222,7 +222,7 @@ public class RegistrationInformationRequest {
|
|||
public RegistrationInformationRequest() {
|
||||
}
|
||||
|
||||
public RegistrationInformationRequest(Integer registrationInformationId, String realName, String affiliatedHospital, Integer medicalDepartmentId, Integer professionalTitleDoctorId, String personalResume, String areaExpertise, Date registrationTime, String numberPatientsServed, BigDecimal consultingPrice, Integer praise, Integer registrationInformationExamineStatus, Integer registrationInformationMedicStatus, String name, Integer pid, String professionalTitleDoctorName) {
|
||||
public RegistrationInformationRequest(Long registrationInformationId, String realName, String affiliatedHospital, Long medicalDepartmentId, Long professionalTitleDoctorId, String personalResume, String areaExpertise, Date registrationTime, String numberPatientsServed, BigDecimal consultingPrice, Long praise, Long registrationInformationExamineStatus, Long registrationInformationMedicStatus, String name, Long pid, String professionalTitleDoctorName) {
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
this.realName = realName;
|
||||
this.affiliatedHospital = affiliatedHospital;
|
||||
|
|
|
@ -17,7 +17,7 @@ public class DetailsPatientCircleDetailCollection {
|
|||
/**
|
||||
* 病友圈详情id
|
||||
*/
|
||||
private Integer detailsPatientCircleId;
|
||||
private Long detailsPatientCircleId;
|
||||
|
||||
/**
|
||||
* 标题
|
||||
|
@ -27,17 +27,17 @@ public class DetailsPatientCircleDetailCollection {
|
|||
/**
|
||||
* 发布人id
|
||||
*/
|
||||
private Integer publisherId;
|
||||
private Long publisherId;
|
||||
|
||||
/**
|
||||
* 病症id
|
||||
*/
|
||||
private Integer diseaseId;
|
||||
private Long diseaseId;
|
||||
|
||||
/**
|
||||
* 科室id
|
||||
*/
|
||||
private Integer departmentId;
|
||||
private Long departmentId;
|
||||
|
||||
/**
|
||||
* 病症详情
|
||||
|
@ -67,17 +67,17 @@ public class DetailsPatientCircleDetailCollection {
|
|||
/**
|
||||
* 提升悬赏额度
|
||||
*/
|
||||
private Integer rewardAmount;
|
||||
private Long rewardAmount;
|
||||
|
||||
/**
|
||||
* 收藏数量
|
||||
*/
|
||||
private Integer collectionQuantity;
|
||||
private Long collectionQuantity;
|
||||
|
||||
/**
|
||||
* 评论数量
|
||||
*/
|
||||
private Integer numberComments;
|
||||
private Long numberComments;
|
||||
|
||||
//--------------------------------------------------------
|
||||
//--------------------------------------------------------
|
||||
|
@ -85,7 +85,7 @@ public class DetailsPatientCircleDetailCollection {
|
|||
/**
|
||||
* 常见病症+常见药品id
|
||||
*/
|
||||
private Integer id;
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
|
@ -95,7 +95,7 @@ public class DetailsPatientCircleDetailCollection {
|
|||
/**
|
||||
* 与id关联
|
||||
*/
|
||||
private Integer pid;
|
||||
private Long pid;
|
||||
|
||||
//-----------------------------------------------------------
|
||||
//-----------------------------------------------------------
|
||||
|
@ -104,7 +104,7 @@ public class DetailsPatientCircleDetailCollection {
|
|||
/**
|
||||
* 详情表中的收藏id
|
||||
*/
|
||||
private Integer detailCollectionId;
|
||||
private Long detailCollectionId;
|
||||
/**
|
||||
* 收藏时间
|
||||
*/
|
||||
|
@ -120,7 +120,7 @@ public class DetailsPatientCircleDetailCollection {
|
|||
/**
|
||||
* 用户id
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 用户名称
|
||||
|
@ -165,17 +165,17 @@ public class DetailsPatientCircleDetailCollection {
|
|||
/**
|
||||
* 绑定微信状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer bindWechatStatus;
|
||||
private Long bindWechatStatus;
|
||||
|
||||
/**
|
||||
* 实名认证状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer realNameAuthenticationStatus;
|
||||
private Long realNameAuthenticationStatus;
|
||||
|
||||
/**
|
||||
* 绑定银行卡状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer bindBankCardStatus;
|
||||
private Long bindBankCardStatus;
|
||||
|
||||
/**
|
||||
* 余额
|
||||
|
@ -191,19 +191,19 @@ public class DetailsPatientCircleDetailCollection {
|
|||
* 状态1:患者 2:医生
|
||||
* @return
|
||||
*/
|
||||
private Integer differentialState;
|
||||
private Long differentialState;
|
||||
//--------------------------------------------
|
||||
//--------------------------------------------
|
||||
//--------------------------------------------
|
||||
/**
|
||||
* 点赞和嘲讽id
|
||||
*/
|
||||
private Integer likeMockId;
|
||||
private Long likeMockId;
|
||||
|
||||
/**
|
||||
* 点赞或嘲讽人id
|
||||
*/
|
||||
private Integer likeMockPeopleId;
|
||||
private Long likeMockPeopleId;
|
||||
|
||||
/**
|
||||
* 点赞时间
|
||||
|
@ -219,6 +219,6 @@ public class DetailsPatientCircleDetailCollection {
|
|||
*状态1:点赞 状态2:取消
|
||||
* @return
|
||||
*/
|
||||
private Integer likeCancellationStatus;
|
||||
private Long likeCancellationStatus;
|
||||
}
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ public class DetailsPatientCircleDetailedReview {
|
|||
/**
|
||||
* 病友圈详情id
|
||||
*/
|
||||
private Integer detailsPatientCircleId;
|
||||
private Long detailsPatientCircleId;
|
||||
|
||||
/**
|
||||
* 标题
|
||||
|
@ -26,17 +26,17 @@ public class DetailsPatientCircleDetailedReview {
|
|||
/**
|
||||
* 发布人id
|
||||
*/
|
||||
private Integer publisherId;
|
||||
private Long publisherId;
|
||||
|
||||
/**
|
||||
* 病症id
|
||||
*/
|
||||
private Integer diseaseId;
|
||||
private Long diseaseId;
|
||||
|
||||
/**
|
||||
* 科室id
|
||||
*/
|
||||
private Integer departmentId;
|
||||
private Long departmentId;
|
||||
|
||||
/**
|
||||
* 病症详情
|
||||
|
@ -66,17 +66,17 @@ public class DetailsPatientCircleDetailedReview {
|
|||
/**
|
||||
* 提升悬赏额度
|
||||
*/
|
||||
private Integer rewardAmount;
|
||||
private Long rewardAmount;
|
||||
|
||||
/**
|
||||
* 收藏数量
|
||||
*/
|
||||
private Integer collectionQuantity;
|
||||
private Long collectionQuantity;
|
||||
|
||||
/**
|
||||
* 评论数量
|
||||
*/
|
||||
private Integer numberComments;
|
||||
private Long numberComments;
|
||||
|
||||
//------------------------------------------------------
|
||||
//------------------------------------------------------
|
||||
|
@ -85,7 +85,7 @@ public class DetailsPatientCircleDetailedReview {
|
|||
/**
|
||||
* 详情表中的评论id
|
||||
*/
|
||||
private Integer detailedReviewId;
|
||||
private Long detailedReviewId;
|
||||
|
||||
/**
|
||||
* 评论时间
|
||||
|
@ -95,17 +95,17 @@ public class DetailsPatientCircleDetailedReview {
|
|||
/**
|
||||
* 评论人id
|
||||
*/
|
||||
private Integer reviewerId;
|
||||
private Long reviewerId;
|
||||
|
||||
/**
|
||||
* 点赞次数
|
||||
*/
|
||||
private Integer numberLikes;
|
||||
private Long numberLikes;
|
||||
|
||||
/**
|
||||
* 嘲讽次数
|
||||
*/
|
||||
private Integer tauntCount;
|
||||
private Long tauntCount;
|
||||
|
||||
/***
|
||||
* 评论内容
|
||||
|
|
|
@ -17,7 +17,7 @@ public class DetailsPatientCircleSymptomsDrugs {
|
|||
/**
|
||||
* 病友圈详情id
|
||||
*/
|
||||
private Integer detailsPatientCircleId;
|
||||
private Long detailsPatientCircleId;
|
||||
|
||||
/**
|
||||
* 标题
|
||||
|
@ -27,17 +27,17 @@ public class DetailsPatientCircleSymptomsDrugs {
|
|||
/**
|
||||
* 发布人id
|
||||
*/
|
||||
private Integer publisherId;
|
||||
private Long publisherId;
|
||||
|
||||
/**
|
||||
* 病症id
|
||||
*/
|
||||
private Integer diseaseId;
|
||||
private Long diseaseId;
|
||||
|
||||
/**
|
||||
* 科室id
|
||||
*/
|
||||
private Integer departmentId;
|
||||
private Long departmentId;
|
||||
|
||||
/**
|
||||
* 病症详情
|
||||
|
@ -67,17 +67,17 @@ public class DetailsPatientCircleSymptomsDrugs {
|
|||
/**
|
||||
* 提升悬赏额度
|
||||
*/
|
||||
private Integer rewardAmount;
|
||||
private Long rewardAmount;
|
||||
|
||||
/**
|
||||
* 收藏数量
|
||||
*/
|
||||
private Integer collectionQuantity;
|
||||
private Long collectionQuantity;
|
||||
|
||||
/**
|
||||
* 评论数量
|
||||
*/
|
||||
private Integer numberComments;
|
||||
private Long numberComments;
|
||||
|
||||
//----------------------------------------------------------
|
||||
//----------------------------------------------------------
|
||||
|
@ -86,7 +86,7 @@ public class DetailsPatientCircleSymptomsDrugs {
|
|||
/**
|
||||
* 常见病症+常见药品id
|
||||
*/
|
||||
private Integer id;
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 名称
|
||||
|
@ -99,7 +99,7 @@ public class DetailsPatientCircleSymptomsDrugs {
|
|||
/**
|
||||
* 与id关联
|
||||
*/
|
||||
private Integer pid;
|
||||
private Long pid;
|
||||
|
||||
/**
|
||||
* 照片路径
|
||||
|
@ -114,7 +114,7 @@ public class DetailsPatientCircleSymptomsDrugs {
|
|||
/**
|
||||
* 用户id
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 用户名称
|
||||
|
@ -159,17 +159,17 @@ public class DetailsPatientCircleSymptomsDrugs {
|
|||
/**
|
||||
* 绑定微信状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer bindWechatStatus;
|
||||
private Long bindWechatStatus;
|
||||
|
||||
/**
|
||||
* 实名认证状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer realNameAuthenticationStatus;
|
||||
private Long realNameAuthenticationStatus;
|
||||
|
||||
/**
|
||||
* 绑定银行卡状态 1:未绑定 2:已绑定
|
||||
*/
|
||||
private Integer bindBankCardStatus;
|
||||
private Long bindBankCardStatus;
|
||||
|
||||
/**
|
||||
* 余额
|
||||
|
|
|
@ -9,12 +9,12 @@ public class ResponseRegistrationInformation {
|
|||
/**
|
||||
* 医生注册信息id
|
||||
*/
|
||||
private Integer registrationInformationId;
|
||||
private Long registrationInformationId;
|
||||
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 真实姓名
|
||||
|
@ -29,12 +29,12 @@ public class ResponseRegistrationInformation {
|
|||
/**
|
||||
* 医生科室id
|
||||
*/
|
||||
private Integer medicalDepartmentId;
|
||||
private Long medicalDepartmentId;
|
||||
|
||||
/**
|
||||
* 医生职称id
|
||||
*/
|
||||
private Integer professionalTitleDoctorId;
|
||||
private Long professionalTitleDoctorId;
|
||||
|
||||
/**
|
||||
* 个人简历
|
||||
|
@ -64,17 +64,17 @@ public class ResponseRegistrationInformation {
|
|||
/**
|
||||
* 好评人数
|
||||
*/
|
||||
private Integer praise;
|
||||
private Long praise;
|
||||
|
||||
/**
|
||||
* 审核状态:1:待审核2:审核通过3:已驳回
|
||||
*/
|
||||
private Integer registrationInformationExamineStatus;
|
||||
private Long registrationInformationExamineStatus;
|
||||
|
||||
/**
|
||||
* 医生的状态:1:在线2:离线
|
||||
*/
|
||||
private Integer registrationInformationMedicStatus;
|
||||
private Long registrationInformationMedicStatus;
|
||||
|
||||
/**
|
||||
* 科室名称
|
||||
|
@ -85,7 +85,7 @@ public class ResponseRegistrationInformation {
|
|||
/**
|
||||
* 医生职称名称
|
||||
*/
|
||||
private Integer professionalTitleDoctorName;
|
||||
private Long professionalTitleDoctorName;
|
||||
|
||||
/**
|
||||
* 用户名称
|
||||
|
@ -98,11 +98,11 @@ public class ResponseRegistrationInformation {
|
|||
public ResponseRegistrationInformation() {
|
||||
}
|
||||
|
||||
public Integer getRegistrationInformationId() {
|
||||
public Long getRegistrationInformationId() {
|
||||
return registrationInformationId;
|
||||
}
|
||||
|
||||
public void setRegistrationInformationId(Integer registrationInformationId) {
|
||||
public void setRegistrationInformationId(Long registrationInformationId) {
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
}
|
||||
|
||||
|
@ -122,19 +122,19 @@ public class ResponseRegistrationInformation {
|
|||
this.affiliatedHospital = affiliatedHospital;
|
||||
}
|
||||
|
||||
public Integer getMedicalDepartmentId() {
|
||||
public Long getMedicalDepartmentId() {
|
||||
return medicalDepartmentId;
|
||||
}
|
||||
|
||||
public void setMedicalDepartmentId(Integer medicalDepartmentId) {
|
||||
public void setMedicalDepartmentId(Long medicalDepartmentId) {
|
||||
this.medicalDepartmentId = medicalDepartmentId;
|
||||
}
|
||||
|
||||
public Integer getProfessionalTitleDoctorId() {
|
||||
public Long getProfessionalTitleDoctorId() {
|
||||
return professionalTitleDoctorId;
|
||||
}
|
||||
|
||||
public void setProfessionalTitleDoctorId(Integer professionalTitleDoctorId) {
|
||||
public void setProfessionalTitleDoctorId(Long professionalTitleDoctorId) {
|
||||
this.professionalTitleDoctorId = professionalTitleDoctorId;
|
||||
}
|
||||
|
||||
|
@ -178,27 +178,27 @@ public class ResponseRegistrationInformation {
|
|||
this.consultingPrice = consultingPrice;
|
||||
}
|
||||
|
||||
public Integer getPraise() {
|
||||
public Long getPraise() {
|
||||
return praise;
|
||||
}
|
||||
|
||||
public void setPraise(Integer praise) {
|
||||
public void setPraise(Long praise) {
|
||||
this.praise = praise;
|
||||
}
|
||||
|
||||
public Integer getRegistrationInformationExamineStatus() {
|
||||
public Long getRegistrationInformationExamineStatus() {
|
||||
return registrationInformationExamineStatus;
|
||||
}
|
||||
|
||||
public void setRegistrationInformationExamineStatus(Integer registrationInformationExamineStatus) {
|
||||
public void setRegistrationInformationExamineStatus(Long registrationInformationExamineStatus) {
|
||||
this.registrationInformationExamineStatus = registrationInformationExamineStatus;
|
||||
}
|
||||
|
||||
public Integer getRegistrationInformationMedicStatus() {
|
||||
public Long getRegistrationInformationMedicStatus() {
|
||||
return registrationInformationMedicStatus;
|
||||
}
|
||||
|
||||
public void setRegistrationInformationMedicStatus(Integer registrationInformationMedicStatus) {
|
||||
public void setRegistrationInformationMedicStatus(Long registrationInformationMedicStatus) {
|
||||
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
|
||||
}
|
||||
|
||||
|
@ -210,19 +210,19 @@ public class ResponseRegistrationInformation {
|
|||
this.name = name;
|
||||
}
|
||||
|
||||
public Integer getProfessionalTitleDoctorName() {
|
||||
public Long getProfessionalTitleDoctorName() {
|
||||
return professionalTitleDoctorName;
|
||||
}
|
||||
|
||||
public void setProfessionalTitleDoctorName(Integer professionalTitleDoctorName) {
|
||||
public void setProfessionalTitleDoctorName(Long professionalTitleDoctorName) {
|
||||
this.professionalTitleDoctorName = professionalTitleDoctorName;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
|
@ -234,7 +234,7 @@ public class ResponseRegistrationInformation {
|
|||
this.username = username;
|
||||
}
|
||||
|
||||
public ResponseRegistrationInformation(Integer registrationInformationId, Integer userId, String realName, String affiliatedHospital, Integer medicalDepartmentId, Integer professionalTitleDoctorId, String personalResume, String areaExpertise, Date registrationTime, String numberPatientsServed, BigDecimal consultingPrice, Integer praise, Integer registrationInformationExamineStatus, Integer registrationInformationMedicStatus, String name, Integer professionalTitleDoctorName, String username) {
|
||||
public ResponseRegistrationInformation(Long registrationInformationId, Long userId, String realName, String affiliatedHospital, Long medicalDepartmentId, Long professionalTitleDoctorId, String personalResume, String areaExpertise, Date registrationTime, String numberPatientsServed, BigDecimal consultingPrice, Long praise, Long registrationInformationExamineStatus, Long registrationInformationMedicStatus, String name, Long professionalTitleDoctorName, String username) {
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
this.userId = userId;
|
||||
this.realName = realName;
|
||||
|
|
|
@ -10,44 +10,44 @@ public class BuyVideo {
|
|||
/**
|
||||
* 购买视频id
|
||||
*/
|
||||
private Integer buyVideoId;
|
||||
private Long buyVideoId;
|
||||
|
||||
/**
|
||||
* 视频id
|
||||
*/
|
||||
private Integer videoId;
|
||||
private Long videoId;
|
||||
|
||||
/**
|
||||
* 购买人id
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 购买时间
|
||||
*/
|
||||
private Date buyTime;
|
||||
|
||||
public Integer getBuyVideoId() {
|
||||
public Long getBuyVideoId() {
|
||||
return buyVideoId;
|
||||
}
|
||||
|
||||
public void setBuyVideoId(Integer buyVideoId) {
|
||||
public void setBuyVideoId(Long buyVideoId) {
|
||||
this.buyVideoId = buyVideoId;
|
||||
}
|
||||
|
||||
public Integer getVideoId() {
|
||||
public Long getVideoId() {
|
||||
return videoId;
|
||||
}
|
||||
|
||||
public void setVideoId(Integer videoId) {
|
||||
public void setVideoId(Long videoId) {
|
||||
this.videoId = videoId;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
|
@ -62,7 +62,7 @@ public class BuyVideo {
|
|||
public BuyVideo() {
|
||||
}
|
||||
|
||||
public BuyVideo(Integer buyVideoId, Integer videoId, Integer userId, Date buyTime) {
|
||||
public BuyVideo(Long buyVideoId, Long videoId, Long userId, Date buyTime) {
|
||||
this.buyVideoId = buyVideoId;
|
||||
this.videoId = videoId;
|
||||
this.userId = userId;
|
||||
|
|
|
@ -8,46 +8,46 @@ public class FavoriteVideo {
|
|||
/**
|
||||
* 收藏视频id
|
||||
*/
|
||||
private Integer favoriteVideoId;
|
||||
private Long favoriteVideoId;
|
||||
|
||||
/**
|
||||
* 视频id
|
||||
*/
|
||||
private Integer videoId;
|
||||
private Long videoId;
|
||||
|
||||
/**
|
||||
* 收藏人id
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
public Integer getFavoriteVideoId() {
|
||||
public Long getFavoriteVideoId() {
|
||||
return favoriteVideoId;
|
||||
}
|
||||
|
||||
public void setFavoriteVideoId(Integer favoriteVideoId) {
|
||||
public void setFavoriteVideoId(Long favoriteVideoId) {
|
||||
this.favoriteVideoId = favoriteVideoId;
|
||||
}
|
||||
|
||||
public Integer getVideoId() {
|
||||
public Long getVideoId() {
|
||||
return videoId;
|
||||
}
|
||||
|
||||
public void setVideoId(Integer videoId) {
|
||||
public void setVideoId(Long videoId) {
|
||||
this.videoId = videoId;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public FavoriteVideo() {
|
||||
}
|
||||
|
||||
public FavoriteVideo(Integer favoriteVideoId, Integer videoId, Integer userId) {
|
||||
public FavoriteVideo(Long favoriteVideoId, Long videoId, Long userId) {
|
||||
this.favoriteVideoId = favoriteVideoId;
|
||||
this.videoId = videoId;
|
||||
this.userId = userId;
|
||||
|
|
|
@ -9,7 +9,7 @@ public class Video {
|
|||
/**
|
||||
* 视频id
|
||||
*/
|
||||
private Integer videoId;
|
||||
private Long videoId;
|
||||
|
||||
/**
|
||||
* 视频标题
|
||||
|
@ -26,11 +26,11 @@ public class Video {
|
|||
*/
|
||||
private String videoPath;
|
||||
|
||||
public Integer getVideoId() {
|
||||
public Long getVideoId() {
|
||||
return videoId;
|
||||
}
|
||||
|
||||
public void setVideoId(Integer videoId) {
|
||||
public void setVideoId(Long videoId) {
|
||||
this.videoId = videoId;
|
||||
}
|
||||
|
||||
|
@ -61,7 +61,7 @@ public class Video {
|
|||
public Video() {
|
||||
}
|
||||
|
||||
public Video(Integer videoId, String videoTitle, String videoDetails, String videoPath) {
|
||||
public Video(Long videoId, String videoTitle, String videoDetails, String videoPath) {
|
||||
this.videoId = videoId;
|
||||
this.videoTitle = videoTitle;
|
||||
this.videoDetails = videoDetails;
|
||||
|
|
|
@ -10,17 +10,17 @@ public class VideoReview {
|
|||
/**
|
||||
* 视频评论id
|
||||
*/
|
||||
private Integer videoReviewId;
|
||||
private Long videoReviewId;
|
||||
|
||||
/**
|
||||
* 视频id
|
||||
*/
|
||||
private Integer videoId;
|
||||
private Long videoId;
|
||||
|
||||
/**
|
||||
* 评论人id
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 评论时间
|
||||
|
@ -32,27 +32,27 @@ public class VideoReview {
|
|||
*/
|
||||
private String commentContent;
|
||||
|
||||
public Integer getVideoReviewId() {
|
||||
public Long getVideoReviewId() {
|
||||
return videoReviewId;
|
||||
}
|
||||
|
||||
public void setVideoReviewId(Integer videoReviewId) {
|
||||
public void setVideoReviewId(Long videoReviewId) {
|
||||
this.videoReviewId = videoReviewId;
|
||||
}
|
||||
|
||||
public Integer getVideoId() {
|
||||
public Long getVideoId() {
|
||||
return videoId;
|
||||
}
|
||||
|
||||
public void setVideoId(Integer videoId) {
|
||||
public void setVideoId(Long videoId) {
|
||||
this.videoId = videoId;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
|
@ -75,7 +75,7 @@ public class VideoReview {
|
|||
public VideoReview() {
|
||||
}
|
||||
|
||||
public VideoReview(Integer videoReviewId, Integer videoId, Integer userId, Date commentTime, String commentContent) {
|
||||
public VideoReview(Long videoReviewId, Long videoId, Long userId, Date commentTime, String commentContent) {
|
||||
this.videoReviewId = videoReviewId;
|
||||
this.videoId = videoId;
|
||||
this.userId = userId;
|
||||
|
|
Loading…
Reference in New Issue