1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| package com.doumee.dao.business.web.response;
|
| import io.swagger.annotations.ApiModel;
| import lombok.Data;
|
| import java.math.BigDecimal;
| import java.util.Date;
|
| /**
| * @author T14
| */
| @Data
| @ApiModel("交易明细")
| public class PayOrderDTO {
|
| private String orderCode;
|
| private Integer payType;
|
| private Integer refundType;
|
| private BigDecimal money;
|
| private Date payDate;
|
| }
|
|