| package com.matrix.system.shopXcx.bean; | 
|   | 
| import com.matrix.system.common.bean.EntityDTOExt; | 
|   | 
| /** | 
|  * 二维码访问记录 | 
|  */ | 
| public class ShopQrcordVisitor extends EntityDTOExt { | 
|   | 
|   | 
|     /** | 
|      * 主键 | 
|      */ | 
|     private String id; | 
|   | 
|   | 
|     /** | 
|      * 二维码id | 
|      */ | 
|     private String ssId; | 
|   | 
|   | 
|     /** | 
|      * 用户ID | 
|      */ | 
|     private String userId; | 
|   | 
|   | 
|     public String getId() { | 
|         return id; | 
|     } | 
|   | 
|     public void setId(String id) { | 
|         this.id = id; | 
|     } | 
|   | 
|     public String getSsId() { | 
|         return ssId; | 
|     } | 
|   | 
|     public void setSsId(String ssId) { | 
|         this.ssId = ssId; | 
|     } | 
|   | 
|     public String getUserId() { | 
|         return userId; | 
|     } | 
|   | 
|     public void setUserId(String userId) { | 
|         this.userId = userId; | 
|     } | 
| } |