123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- package com.fdkankan.manage.entity;
- import com.baomidou.mybatisplus.annotation.IdType;
- 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 java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- * 收货人信息表
- * </p>
- *
- * @author
- * @since 2022-11-08
- */
- @Getter
- @Setter
- @TableName("t_receiver_info")
- public class ReceiverInfo implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 用户表t_user的id
- */
- @TableField("user_id")
- private Long userId;
- /**
- * 收货人姓名
- */
- @TableField("ship_name")
- private String shipName;
- /**
- * 收货人的电话号码
- */
- @TableField("ship_mobile")
- private String shipMobile;
- /**
- * 所在地区
- */
- @TableField("ship_area")
- private String shipArea;
- /**
- * 收货的详细地址
- */
- @TableField("ship_address")
- private String shipAddress;
- /**
- * 1表示默认地址,0表示不是默认地址
- */
- @TableField("set_default")
- private Integer setDefault;
- @TableField("country")
- private String country;
- /**
- * 收货地区路径
- */
- @TableField("ship_area_path")
- private String shipAreaPath;
- /**
- * 收货电话
- */
- @TableField("ship_phone")
- private String shipPhone;
- /**
- * 收货邮编
- */
- @TableField("ship_zip_code")
- private String shipZipCode;
- /**
- * 创建时间
- */
- @TableField("create_time")
- private String createTime;
- /**
- * 记录的状态,A: 生效,I: 禁用
- */
- @TableField("rec_status")
- @TableLogic(value = "A",delval = "I")
- private String recStatus;
- /**
- * 更新时间
- */
- @TableField("update_time")
- private String updateTime;
- }
|