修改病友圈收藏记录表
parent
5f38c5367a
commit
d8dda599d0
|
@ -23,10 +23,38 @@ public class DetailCollection {
|
|||
private Date collectionTime;
|
||||
|
||||
/**
|
||||
* 收藏人
|
||||
* 收藏人id
|
||||
*/
|
||||
private Long collectorId;
|
||||
|
||||
/**
|
||||
* 收藏状态
|
||||
*/
|
||||
private Integer detailCollectionStatus;
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "DetailCollection{" +
|
||||
"detailCollectionId=" + detailCollectionId +
|
||||
", detailsPatientCircleId=" + detailsPatientCircleId +
|
||||
", collectionTime=" + collectionTime +
|
||||
", collectorId=" + collectorId +
|
||||
", detailCollectionStatus=" + detailCollectionStatus +
|
||||
", detailCollectionFounder='" + detailCollectionFounder + '\'' +
|
||||
", detailCollectionFounderTime=" + detailCollectionFounderTime +
|
||||
", detailCollectionModificator='" + detailCollectionModificator + '\'' +
|
||||
", detailCollectionModificatorTime=" + detailCollectionModificatorTime +
|
||||
'}';
|
||||
}
|
||||
|
||||
public Integer getDetailCollectionStatus() {
|
||||
return detailCollectionStatus;
|
||||
}
|
||||
|
||||
public void setDetailCollectionStatus(Integer detailCollectionStatus) {
|
||||
this.detailCollectionStatus = detailCollectionStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建人
|
||||
* @return
|
||||
|
@ -117,20 +145,6 @@ public class DetailCollection {
|
|||
this.collectionTime = collectionTime;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "DetailCollection{" +
|
||||
"detailCollectionId=" + detailCollectionId +
|
||||
", detailsPatientCircleId=" + detailsPatientCircleId +
|
||||
", collectionTime=" + collectionTime +
|
||||
", collectorId=" + collectorId +
|
||||
", detailCollectionFounder='" + detailCollectionFounder + '\'' +
|
||||
", detailCollectionFounderTime=" + detailCollectionFounderTime +
|
||||
", detailCollectionModificator='" + detailCollectionModificator + '\'' +
|
||||
", detailCollectionModificatorTime=" + detailCollectionModificatorTime +
|
||||
'}';
|
||||
}
|
||||
|
||||
public Long getCollectorId() {
|
||||
return collectorId;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue