1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.agentdriving.user.modular.system.warpper;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| /**
| * @author zhibing.pu
| * @date 2023/3/10 10:50
| */
| @Data
| @ApiModel
| public class OrderPayment {
| @ApiModelProperty(value = "订单id", required = true, dataType = "Long")
| private Long orderId;
| @ApiModelProperty(value = "支付方式(1=微信,2=余额,3=线下,4=微信+余额)", required = true, dataType = "int")
| private Integer payType;
| @ApiModelProperty(value = "优惠券id", required = false, dataType = "int")
| private Integer couponId;
| }
|
|