parent
9494e563d5
commit
68067dfc15
@ -0,0 +1,26 @@ |
|||||||
|
package com.share.help.form; |
||||||
|
|
||||||
|
/** |
||||||
|
* 查询分数 |
||||||
|
*/ |
||||||
|
public class QueryScoreForm { |
||||||
|
private String userId; |
||||||
|
|
||||||
|
private Long activityId; |
||||||
|
|
||||||
|
public String getUserId() { |
||||||
|
return userId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setUserId(String userId) { |
||||||
|
this.userId = userId; |
||||||
|
} |
||||||
|
|
||||||
|
public Long getActivityId() { |
||||||
|
return activityId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setActivityId(Long activityId) { |
||||||
|
this.activityId = activityId; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,25 @@ |
|||||||
|
package com.share.help.res; |
||||||
|
|
||||||
|
import java.sql.Timestamp; |
||||||
|
|
||||||
|
public class TimeScore { |
||||||
|
private Timestamp createTime; |
||||||
|
|
||||||
|
private Integer timeScore; |
||||||
|
|
||||||
|
public Timestamp getCreateTime() { |
||||||
|
return createTime; |
||||||
|
} |
||||||
|
|
||||||
|
public void setCreateTime(Timestamp createTime) { |
||||||
|
this.createTime = createTime; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getTimeScore() { |
||||||
|
return timeScore; |
||||||
|
} |
||||||
|
|
||||||
|
public void setTimeScore(Integer timeScore) { |
||||||
|
this.timeScore = timeScore; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue