| package com.xzx.gc.entity;  | 
|   | 
| import lombok.Data;  | 
|   | 
| import javax.persistence.Id;  | 
| import javax.persistence.Table;  | 
|   | 
| @Data  | 
| @Table(name = "xzx_black_white_list")  | 
| public class BlackWhite {  | 
|   | 
|     @Id  | 
|     private Long id;  | 
|   | 
|     private String userMobile;  | 
|   | 
|     private String activClass;  | 
|   | 
|     private String blackWhite;  | 
|   | 
|     private String createTime;  | 
|   | 
|   | 
| } |