-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
59 changed files
with
1,414 additions
and
188 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
package cms.bean.user; | ||
|
||
import java.io.Serializable; | ||
|
||
/** | ||
* 奖励积分信息 | ||
* @author Gao | ||
* | ||
*/ | ||
public class RewardPointInfo implements Serializable{ | ||
|
||
private static final long serialVersionUID = -4809755688926932271L; | ||
|
||
/** 发表话题奖励积分 **/ | ||
private Long topic_rewardPoint = 0L; | ||
/** 发表评论奖励积分 **/ | ||
private Long comment_rewardPoint = 0L; | ||
/** 发表回复奖励积分 **/ | ||
private Long reply_rewardPoint = 0L; | ||
|
||
/** 提交问题奖励积分 **/ | ||
private Long question_rewardPoint = 0L; | ||
/** 提交答案奖励积分 **/ | ||
private Long answer_rewardPoint = 0L; | ||
/** 提交答案回复奖励积分 **/ | ||
private Long answerReply_rewardPoint = 0L; | ||
|
||
public Long getTopic_rewardPoint() { | ||
return topic_rewardPoint; | ||
} | ||
public void setTopic_rewardPoint(Long topic_rewardPoint) { | ||
this.topic_rewardPoint = topic_rewardPoint; | ||
} | ||
public Long getComment_rewardPoint() { | ||
return comment_rewardPoint; | ||
} | ||
public void setComment_rewardPoint(Long comment_rewardPoint) { | ||
this.comment_rewardPoint = comment_rewardPoint; | ||
} | ||
public Long getReply_rewardPoint() { | ||
return reply_rewardPoint; | ||
} | ||
public void setReply_rewardPoint(Long reply_rewardPoint) { | ||
this.reply_rewardPoint = reply_rewardPoint; | ||
} | ||
public Long getQuestion_rewardPoint() { | ||
return question_rewardPoint; | ||
} | ||
public void setQuestion_rewardPoint(Long question_rewardPoint) { | ||
this.question_rewardPoint = question_rewardPoint; | ||
} | ||
public Long getAnswer_rewardPoint() { | ||
return answer_rewardPoint; | ||
} | ||
public void setAnswer_rewardPoint(Long answer_rewardPoint) { | ||
this.answer_rewardPoint = answer_rewardPoint; | ||
} | ||
public Long getAnswerReply_rewardPoint() { | ||
return answerReply_rewardPoint; | ||
} | ||
public void setAnswerReply_rewardPoint(Long answerReply_rewardPoint) { | ||
this.answerReply_rewardPoint = answerReply_rewardPoint; | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.