| 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
 | | package com.dy.pipIrrGlobal.pojoSe; |  |   |  | /** |  |  * @author ZhuBaoMin |  |  * @date 2024-09-26 14:57 |  |  * @LastEditTime 2024-09-26 14:57 |  |  * @Description |  |  */ |  |   |  | import com.baomidou.mybatisplus.annotation.TableName; |  | import com.dy.common.po.BaseEntity; |  | import lombok.*; |  |   |  | /** |  |  * 农户临时表 |  |  */ |  |   |  | @TableName(value = "se_client_temp", autoResultMap = true) |  | @Data |  | @Builder |  | @ToString |  | @NoArgsConstructor |  | @AllArgsConstructor |  | public class SeClientTemp implements BaseEntity { |  |     public static final long serialVersionUID = 202409261459001L; |  |   |  |     /** |  |     * 主键 |  |     */ |  |     private Integer id; |  |   |  |     /** |  |     * 镇 |  |     */ |  |     private String town; |  |   |  |     /** |  |     * 村 |  |     */ |  |     private String village; |  |   |  |     /** |  |     * 姓名 |  |     */ |  |     private String name; |  |   |  |     /** |  |     * 身份证号 |  |     */ |  |     private String idcard; |  |   |  |     /** |  |     * 手机号 |  |     */ |  |     private String phone; |  |   |  |     /** |  |     * 街道及门牌号 |  |     */ |  |     private String address; |  |   |  | } | 
 |