添加类
parent
c5435a4204
commit
82e0869ccb
|
@ -20,7 +20,7 @@ public class AdvisoryCollection {
|
||||||
/**
|
/**
|
||||||
* 收藏人id
|
* 收藏人id
|
||||||
*/
|
*/
|
||||||
private Integer userId;
|
private Long userId;
|
||||||
|
|
||||||
public Integer getAdvisoryCollectionId() {
|
public Integer getAdvisoryCollectionId() {
|
||||||
return advisoryCollectionId;
|
return advisoryCollectionId;
|
||||||
|
@ -38,18 +38,18 @@ public class AdvisoryCollection {
|
||||||
this.consultationDetailsId = consultationDetailsId;
|
this.consultationDetailsId = consultationDetailsId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Integer getUserId() {
|
public Long getUserId() {
|
||||||
return userId;
|
return userId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setUserId(Integer userId) {
|
public void setUserId(Long userId) {
|
||||||
this.userId = userId;
|
this.userId = userId;
|
||||||
}
|
}
|
||||||
|
|
||||||
public AdvisoryCollection() {
|
public AdvisoryCollection() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public AdvisoryCollection(Integer advisoryCollectionId, Integer consultationDetailsId, Integer userId) {
|
public AdvisoryCollection(Integer advisoryCollectionId, Integer consultationDetailsId, Long userId) {
|
||||||
this.advisoryCollectionId = advisoryCollectionId;
|
this.advisoryCollectionId = advisoryCollectionId;
|
||||||
this.consultationDetailsId = consultationDetailsId;
|
this.consultationDetailsId = consultationDetailsId;
|
||||||
this.userId = userId;
|
this.userId = userId;
|
||||||
|
|
Loading…
Reference in New Issue