1
2
3
4
5
6
7
8
9
10
11
12
| package cn.iocoder.yudao.module.trade.controller.admin.delivery.vo.express;
|
| import lombok.*;
| import io.swagger.v3.oas.annotations.media.Schema;
|
| @Schema(description = "管理后台 - 快递公司创建 Request VO")
| @Data
| @EqualsAndHashCode(callSuper = true)
| @ToString(callSuper = true)
| public class DeliveryExpressCreateReqVO extends DeliveryExpressBaseVO {
|
| }
|
|