| package com.matrix.system.shopXcx.pojo; | 
|   | 
| /** | 
|  * @author jyy | 
|  */ | 
| public class ExchangeScorePOJO { | 
|     /** | 
|      * 用户ID | 
|      */ | 
|     private String userId; | 
|   | 
|     /** | 
|      * 兑换积分 | 
|      */ | 
|     private Integer score; | 
|   | 
|     /** | 
|      * 兑换备注 | 
|      */ | 
|     private String remarks; | 
|   | 
|     public String getUserId() { | 
|         return userId; | 
|     } | 
|   | 
|     public void setUserId(String userId) { | 
|         this.userId = userId; | 
|     } | 
|   | 
|     public Integer getScore() { | 
|         return score; | 
|     } | 
|   | 
|     public void setScore(Integer score) { | 
|         this.score = score; | 
|     } | 
|   | 
|     public String getRemarks() { | 
|         return remarks; | 
|     } | 
|   | 
|     public void setRemarks(String remarks) { | 
|         this.remarks = remarks; | 
|     } | 
|   | 
| } |