You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1007 B
Java
53 lines
1007 B
Java
package com.gszc.entity;
|
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
import lombok.experimental.Accessors;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* <p>
|
|
*
|
|
* </p>
|
|
*
|
|
* @author ky
|
|
* @since 2020-04-27
|
|
*/
|
|
@ApiModel
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@Accessors(chain = true)
|
|
public class ReceiveAddress implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private String id;
|
|
|
|
@ApiModelProperty(value = "收件人姓名")
|
|
private String name;
|
|
|
|
@ApiModelProperty(value = "手机号")
|
|
private String telephone;
|
|
|
|
@ApiModelProperty(value = "所在地区")
|
|
private String region;
|
|
|
|
@ApiModelProperty(value = "详细地址")
|
|
private String address;
|
|
|
|
@ApiModelProperty(value = "是否默认")
|
|
private Boolean isDefault;
|
|
|
|
private Date createDate;
|
|
|
|
private Date modifyDate;
|
|
|
|
private String miniUserId;
|
|
|
|
|
|
}
|