| package com.xzx.gc.entity; | 
|   | 
|   | 
| import com.xzx.gc.common.entity.BaseEntity; | 
| import lombok.Data; | 
|   | 
| import javax.persistence.Table; | 
|   | 
| @Data | 
| @Table(name = "xzx_jhy_info") | 
| public class JhyInfo extends BaseEntity { | 
|   | 
|     private String userId; | 
|   | 
|     private String username; | 
|   | 
|     private String gender; | 
|   | 
|     private String mobile; | 
|   | 
|     private String identity; | 
|   | 
|     private String address; | 
|   | 
|     private String lon; | 
|   | 
|     private String lat; | 
|   | 
|     private String cardPos; | 
|   | 
|     /** | 
|      * 是否集物员 1-是 2-否 | 
|      */ | 
|     private String isJhy; | 
|     public static final String IS_JHY_Y = "1"; | 
|     public static final String IS_JHY_N = "2"; | 
|   | 
|     /** | 
|      * 审核状态 1-待审核 2-审核通过 3-审核拒绝 | 
|      */ | 
|     private Integer status; | 
|     public static final Integer CHECK_WAIT = 1; | 
|     public static final Integer CHECK_PASS = 2; | 
|     public static final Integer CHECK_REFUSE = 3; | 
| } |