Helius
2021-06-24 c13cc7349ca2a5ffa8eb1d41c583ceef2647abdb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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 isJyh;
}