This commit is contained in:
Guoqs
2025-04-16 11:57:59 +08:00
parent 6e8cd51cb4
commit 21772ca796
3 changed files with 63 additions and 21 deletions

View File

@@ -17,42 +17,47 @@ import lombok.experimental.SuperBuilder;
@NoArgsConstructor
public class OrderUnsplitRecord {
/**
* 主键
*/
* 主键
*/
private Integer id;
/**
* 支付id
*/
* 支付id
*/
private String paymentId;
/**
* 状态
*/
* 状态
*/
private String status;
/**
* 订单编号
*/
* 订单编号
*/
private String orderCode;
/**
* 支付金额
*/
* 支付金额
*/
private BigDecimal payAmount;
/**
* 结算金额
*/
* 退款金额
*/
private BigDecimal refundAmount;
/**
* 结算金额
*/
private BigDecimal settleAmount;
/**
* 订单时间
*/
* 订单时间
*/
private Date orderTime;
/**
* 记录添加时间
*/
* 记录添加时间
*/
private Date createTime;
}

View File

@@ -1,7 +1,9 @@
package com.jsowell.pile.mapper;
import com.jsowell.pile.domain.OrderUnsplitRecord;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface OrderUnsplitRecordMapper {