| package com.ruoyi.account.api.model; | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableField; | 
| import com.baomidou.mybatisplus.annotation.TableId; | 
| import com.baomidou.mybatisplus.annotation.TableLogic; | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| import lombok.EqualsAndHashCode; | 
|   | 
| import java.io.Serializable; | 
| import java.time.LocalDateTime; | 
|   | 
| /** | 
|  * <p> | 
|  *  | 
|  * </p> | 
|  * | 
|  * @author luodangjia | 
|  * @since 2024-11-21 | 
|  */ | 
| @Data | 
| @EqualsAndHashCode(callSuper = false) | 
| @TableName("t_user_address") | 
| @ApiModel(value="UserAddress对象", description="") | 
| public class UserAddress implements Serializable { | 
|   | 
|     private static final long serialVersionUID = 1L; | 
|   | 
|     @TableId("id") | 
|     private Long id; | 
|   | 
|     @TableField(exist = false) | 
|     private String idStr; | 
|   | 
|     @TableField(exist = false) | 
|     private String uid; | 
|   | 
|   | 
|     @ApiModelProperty(value = "用户id") | 
|     @TableField("app_user_id") | 
|     private Long appUserId; | 
|   | 
|     @ApiModelProperty(value = "收件人姓名") | 
|     @TableField("recieve_name") | 
|     private String recieveName; | 
|   | 
|     @ApiModelProperty(value = "收件人电话") | 
|     @TableField("recieve_phone") | 
|     private String recievePhone; | 
|   | 
|     @ApiModelProperty(value = "收件人地址") | 
|     @TableField("recieve_address") | 
|     private String recieveAddress; | 
|   | 
|     @ApiModelProperty(value = "是否默认1是0否") | 
|     @TableField("is_default") | 
|     private Integer isDefault; | 
|   | 
|     @ApiModelProperty(value = "删除(0=否,1=是)") | 
|     @TableField("del_flag") | 
|     @TableLogic | 
|     private Integer delFlag; | 
|   | 
|     @ApiModelProperty(value = "添加时间") | 
|     @TableField("create_time") | 
|     private LocalDateTime createTime; | 
|   | 
|   | 
| } |