bug修复

This commit is contained in:
张松
2025-09-29 18:40:26 +08:00
parent 8d788ff987
commit 6b15b624e3
6 changed files with 29 additions and 6 deletions

View File

@@ -12,6 +12,7 @@ import java.io.Serial;
import jakarta.validation.constraints.NotBlank;
import lombok.*;
import lombok.experimental.Accessors;
/**
* 支付详情 实体类。
@@ -21,6 +22,7 @@ import lombok.*;
*/
@Data
@Table("tb_order_payment")
@Accessors(chain = true)
public class OrderPayment implements Serializable {
@Serial
@@ -32,13 +34,22 @@ public class OrderPayment implements Serializable {
@Id(keyType = KeyType.Auto)
private Long id;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
/**
* 店铺Id
*/
private Long shopId;
/**
* 来源Id 订单Id或充值id
* 来源Id 订单Id或充值id
*/
private Long sourceId;
/**