parent
e8f1c2aebf
commit
164c7cd308
@ -0,0 +1,63 @@ |
|||||||
|
package com.hfkj.openapi.v1.model; |
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||||
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.math.BigDecimal; |
||||||
|
import java.util.Date; |
||||||
|
|
||||||
|
/** |
||||||
|
* 交易退款账单模型 |
||||||
|
* @className: TradeBillsModel |
||||||
|
* @author: HuRui |
||||||
|
* @date: 2023/5/25 |
||||||
|
**/ |
||||||
|
@Data |
||||||
|
public class TradeRefundBillsModel { |
||||||
|
|
||||||
|
@ColumnWidth(25) |
||||||
|
@ExcelProperty("申请退款时间") |
||||||
|
private Date createTime; |
||||||
|
|
||||||
|
@ColumnWidth(35) |
||||||
|
@ExcelProperty("商户退款单号") |
||||||
|
private String refundNo; |
||||||
|
|
||||||
|
@ColumnWidth(25) |
||||||
|
@ExcelProperty("退款状态") |
||||||
|
private String refundStatus; |
||||||
|
|
||||||
|
@ColumnWidth(25) |
||||||
|
@ExcelProperty("退款成功时间") |
||||||
|
private Date refundTime; |
||||||
|
|
||||||
|
@ColumnWidth(25) |
||||||
|
@ExcelProperty("退款金额") |
||||||
|
private BigDecimal refundAmount; |
||||||
|
|
||||||
|
@ColumnWidth(35) |
||||||
|
@ExcelProperty("商户交易单号") |
||||||
|
private String outTradeNo; |
||||||
|
|
||||||
|
@ColumnWidth(35) |
||||||
|
@ExcelProperty("账户端交易单号") |
||||||
|
private String accTradeNo; |
||||||
|
|
||||||
|
@ColumnWidth(30) |
||||||
|
@ExcelProperty("商户号") |
||||||
|
private String merNo; |
||||||
|
|
||||||
|
@ColumnWidth(25) |
||||||
|
@ExcelProperty("交易金额") |
||||||
|
private BigDecimal accSettleAmount; |
||||||
|
|
||||||
|
@ColumnWidth(30) |
||||||
|
@ExcelProperty("退款原因") |
||||||
|
private String refundReason; |
||||||
|
|
||||||
|
@ColumnWidth(25) |
||||||
|
@ExcelProperty("操作人") |
||||||
|
private String operatorName; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,40 @@ |
|||||||
|
package com.hfkj.openapi.v1.model.request; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import javax.validation.constraints.NotBlank; |
||||||
|
|
||||||
|
/** |
||||||
|
* 请求账单下载模型 |
||||||
|
* @className: TradePreorderModel |
||||||
|
* @author: HuRui |
||||||
|
* @date: 2023/5/23 |
||||||
|
**/ |
||||||
|
@Data |
||||||
|
public class RequestTradeRefundBillsModel { |
||||||
|
|
||||||
|
/** |
||||||
|
* 商户号 |
||||||
|
*/ |
||||||
|
@NotBlank(message = "商户号必填项") |
||||||
|
private String merchantNo; |
||||||
|
|
||||||
|
/** |
||||||
|
* 报表开始时间 |
||||||
|
*/ |
||||||
|
@NotBlank(message = "开始时间必填项") |
||||||
|
private Long billDateS; |
||||||
|
|
||||||
|
/** |
||||||
|
* 报表结束时间 |
||||||
|
*/ |
||||||
|
@NotBlank(message = "结束时间必填项") |
||||||
|
private Long billDateE; |
||||||
|
|
||||||
|
/** |
||||||
|
* 签名参数 |
||||||
|
*/ |
||||||
|
@NotBlank(message = "签名必填项") |
||||||
|
private String sign; |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue