添加字段
parent
d300cdc75f
commit
b5cbb6a76c
|
@ -27,6 +27,62 @@ public class DetailCollection {
|
||||||
*/
|
*/
|
||||||
private String collector;
|
private String collector;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建人
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
private String detailCollectionFounder;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
private Date detailCollectionFounderTime;
|
||||||
|
|
||||||
|
public String getDetailCollectionFounder() {
|
||||||
|
return detailCollectionFounder;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDetailCollectionFounder(String detailCollectionFounder) {
|
||||||
|
this.detailCollectionFounder = detailCollectionFounder;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getDetailCollectionFounderTime() {
|
||||||
|
return detailCollectionFounderTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDetailCollectionFounderTime(Date detailCollectionFounderTime) {
|
||||||
|
this.detailCollectionFounderTime = detailCollectionFounderTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDetailCollectionModificator() {
|
||||||
|
return detailCollectionModificator;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDetailCollectionModificator(String detailCollectionModificator) {
|
||||||
|
this.detailCollectionModificator = detailCollectionModificator;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getDetailCollectionModificatorTime() {
|
||||||
|
return detailCollectionModificatorTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDetailCollectionModificatorTime(Date detailCollectionModificatorTime) {
|
||||||
|
this.detailCollectionModificatorTime = detailCollectionModificatorTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改人
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
private String detailCollectionModificator;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改时间
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
private Date detailCollectionModificatorTime;
|
||||||
|
|
||||||
public Long getDetailCollectionId() {
|
public Long getDetailCollectionId() {
|
||||||
return detailCollectionId;
|
return detailCollectionId;
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,6 +43,58 @@ public class DetailedReview {
|
||||||
*/
|
*/
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*创建人
|
||||||
|
*/
|
||||||
|
private String detailedReviewFounder;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*创建时间
|
||||||
|
*/
|
||||||
|
private Date detailedReviewFounderTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改人
|
||||||
|
*/
|
||||||
|
private String detailedReviewModificator;
|
||||||
|
|
||||||
|
public String getDetailedReviewFounder() {
|
||||||
|
return detailedReviewFounder;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDetailedReviewFounder(String detailedReviewFounder) {
|
||||||
|
this.detailedReviewFounder = detailedReviewFounder;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getDetailedReviewFounderTime() {
|
||||||
|
return detailedReviewFounderTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDetailedReviewFounderTime(Date detailedReviewFounderTime) {
|
||||||
|
this.detailedReviewFounderTime = detailedReviewFounderTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDetailedReviewModificator() {
|
||||||
|
return detailedReviewModificator;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDetailedReviewModificator(String detailedReviewModificator) {
|
||||||
|
this.detailedReviewModificator = detailedReviewModificator;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getDetailedReviewModificatorTime() {
|
||||||
|
return detailedReviewModificatorTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDetailedReviewModificatorTime(Date detailedReviewModificatorTime) {
|
||||||
|
this.detailedReviewModificatorTime = detailedReviewModificatorTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改时间
|
||||||
|
*/
|
||||||
|
private Date detailedReviewModificatorTime;
|
||||||
|
|
||||||
public DetailedReview(Long detailedReviewId, Long detailsPatientCircleId, Date commentTime, Long reviewerId, Long numberLikes, Long tauntCount, String name) {
|
public DetailedReview(Long detailedReviewId, Long detailsPatientCircleId, Date commentTime, Long reviewerId, Long numberLikes, Long tauntCount, String name) {
|
||||||
this.detailedReviewId = detailedReviewId;
|
this.detailedReviewId = detailedReviewId;
|
||||||
this.detailsPatientCircleId = detailsPatientCircleId;
|
this.detailsPatientCircleId = detailsPatientCircleId;
|
||||||
|
|
|
@ -72,6 +72,81 @@ public class DetailsPatientCircle {
|
||||||
*/
|
*/
|
||||||
private Long numberComments;
|
private Long numberComments;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建人
|
||||||
|
*/
|
||||||
|
private String detailsPatientCircleFounder;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
private Date detailsPatientCircleFounderTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改人
|
||||||
|
*/
|
||||||
|
private String detailsPatientCircleModificator;
|
||||||
|
|
||||||
|
public String getDetailsPatientCircleFounder() {
|
||||||
|
return detailsPatientCircleFounder;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "DetailsPatientCircle{" +
|
||||||
|
"detailsPatientCircleId=" + detailsPatientCircleId +
|
||||||
|
", title='" + title + '\'' +
|
||||||
|
", publisherId=" + publisherId +
|
||||||
|
", diseaseId=" + diseaseId +
|
||||||
|
", departmentId=" + departmentId +
|
||||||
|
", detailsSymptoms='" + detailsSymptoms + '\'' +
|
||||||
|
", treatmentExperienceStartTime=" + treatmentExperienceStartTime +
|
||||||
|
", treatmentExperienceEndTime=" + treatmentExperienceEndTime +
|
||||||
|
", treatmentExperience='" + treatmentExperience + '\'' +
|
||||||
|
", relatedPictures='" + relatedPictures + '\'' +
|
||||||
|
", rewardAmount=" + rewardAmount +
|
||||||
|
", collectionQuantity=" + collectionQuantity +
|
||||||
|
", numberComments=" + numberComments +
|
||||||
|
", detailsPatientCircleFounder='" + detailsPatientCircleFounder + '\'' +
|
||||||
|
", detailsPatientCircleFounderTime=" + detailsPatientCircleFounderTime +
|
||||||
|
", detailsPatientCircleModificator='" + detailsPatientCircleModificator + '\'' +
|
||||||
|
", detailsPatientCircleModificatorTime=" + detailsPatientCircleModificatorTime +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDetailsPatientCircleFounder(String detailsPatientCircleFounder) {
|
||||||
|
this.detailsPatientCircleFounder = detailsPatientCircleFounder;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getDetailsPatientCircleFounderTime() {
|
||||||
|
return detailsPatientCircleFounderTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDetailsPatientCircleFounderTime(Date detailsPatientCircleFounderTime) {
|
||||||
|
this.detailsPatientCircleFounderTime = detailsPatientCircleFounderTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDetailsPatientCircleModificator() {
|
||||||
|
return detailsPatientCircleModificator;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDetailsPatientCircleModificator(String detailsPatientCircleModificator) {
|
||||||
|
this.detailsPatientCircleModificator = detailsPatientCircleModificator;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getDetailsPatientCircleModificatorTime() {
|
||||||
|
return detailsPatientCircleModificatorTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDetailsPatientCircleModificatorTime(Date detailsPatientCircleModificatorTime) {
|
||||||
|
this.detailsPatientCircleModificatorTime = detailsPatientCircleModificatorTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改时间
|
||||||
|
*/
|
||||||
|
private Date detailsPatientCircleModificatorTime;
|
||||||
|
|
||||||
public DetailsPatientCircle() {
|
public DetailsPatientCircle() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,18 @@ public class LikeMock {
|
||||||
*/
|
*/
|
||||||
private Long likeCancellationStatus;
|
private Long likeCancellationStatus;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建人
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
private String likeMockFounder;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
private Date likeMockFounderTime;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public Long getLikeCancellationStatus() {
|
public Long getLikeCancellationStatus() {
|
||||||
|
|
|
@ -22,6 +22,58 @@ public class AcceptedProposal {
|
||||||
*/
|
*/
|
||||||
private Date adoptionTime;
|
private Date adoptionTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建人
|
||||||
|
*/
|
||||||
|
private String adoptionFounder;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
private Date adoptionFounderTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改人
|
||||||
|
*/
|
||||||
|
private String adoptionModificator;
|
||||||
|
|
||||||
|
public String getAdoptionFounder() {
|
||||||
|
return adoptionFounder;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAdoptionFounder(String adoptionFounder) {
|
||||||
|
this.adoptionFounder = adoptionFounder;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getAdoptionFounderTime() {
|
||||||
|
return adoptionFounderTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAdoptionFounderTime(Date adoptionFounderTime) {
|
||||||
|
this.adoptionFounderTime = adoptionFounderTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAdoptionModificator() {
|
||||||
|
return adoptionModificator;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAdoptionModificator(String adoptionModificator) {
|
||||||
|
this.adoptionModificator = adoptionModificator;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Date getAdoptionModificatorTime() {
|
||||||
|
return adoptionModificatorTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAdoptionModificatorTime(Date adoptionModificatorTime) {
|
||||||
|
this.adoptionModificatorTime = adoptionModificatorTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 修改时间
|
||||||
|
*/
|
||||||
|
private Date adoptionModificatorTime;
|
||||||
|
|
||||||
public AcceptedProposal() {
|
public AcceptedProposal() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue