bug修复
This commit is contained in:
@@ -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;
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user