|
|
|
@ -1,7 +1,6 @@ |
|
|
|
package com.qniao.dam.domain.aggregate.paymentorder.entity; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName; |
|
|
|
import com.qniao.dam.domain.aggregate.order.entity.OrderItem; |
|
|
|
import com.qniao.dam.domian.aggregate.paymentorder.constant.PaymentMethodEnum; |
|
|
|
import com.qniao.dam.domian.aggregate.paymentorder.constant.PaymentOrderStatusEnum; |
|
|
|
import com.qniao.domain.Entity; |
|
|
|
@ -14,8 +13,8 @@ import java.time.LocalDateTime; |
|
|
|
|
|
|
|
@Data |
|
|
|
@EqualsAndHashCode(callSuper = true) |
|
|
|
@TableName("da_order") |
|
|
|
public class PaymentOrder extends Entity<OrderItem> { |
|
|
|
@TableName("da_payment_order") |
|
|
|
public class PaymentOrder extends Entity<PaymentOrder> { |
|
|
|
|
|
|
|
@ApiModelProperty("订单标识") |
|
|
|
private Long orderId; |
|
|
|
|