package com.gear.finance.domain;
|
|
import com.gear.common.annotation.Excel;
|
import lombok.Data;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.gear.common.core.domain.BusiBaseEntity;
|
|
/**
|
* 用户地址管理对象 finance_user_address
|
*
|
* @author czx
|
* @date 2023-11-16
|
*/
|
@Data
|
@TableName("finance_user_address")
|
public class FinanceUserAddress extends BusiBaseEntity {
|
|
private static final long serialVersionUID=1L;
|
|
/** $column.columnComment */
|
@TableId(type = IdType.ASSIGN_ID)
|
private String id;
|
|
/** $column.columnComment */
|
@Excel(name = "${comment}" , readConverterExp = "$column.readConverterExp()")
|
private String userId;
|
|
/** 国家 */
|
@Excel(name = "国家")
|
private String country;
|
|
/** 省份 */
|
@Excel(name = "省份")
|
private String province;
|
|
/** 城市 */
|
@Excel(name = "城市")
|
private String city;
|
|
/** 详细地址 */
|
@Excel(name = "详细地址")
|
private String address;
|
|
/** 收货人 */
|
@Excel(name = "收货人")
|
private String name;
|
|
/** 手机号 */
|
@Excel(name = "手机号")
|
private String phone;
|
|
/** 是否默认 */
|
@Excel(name = "是否默认")
|
private Integer isDefault;
|
|
}
|