package cn.iocoder.yudao.module.member.controller.admin.address.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.*;
|
import java.time.LocalDateTime;
|
|
@Schema(description = "管理后台 - 用户收件地址 Response VO")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
public class AddressRespVO extends AddressBaseVO {
|
|
@Schema(description = "收件地址编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "7380")
|
private Long id;
|
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
|
private LocalDateTime createTime;
|
|
@Schema(description = "地区名称", example = "上海上海市普陀区")
|
private String areaName;
|
|
}
|