| New file | 
 |  |  | 
 |  |  | 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; | 
 |  |  |  | 
 |  |  | } |