You've already forked FrameTour-BE
订单详情添加人脸ID
This commit is contained in:
@ -29,6 +29,7 @@ public class OrderItemVO {
|
||||
*/
|
||||
@ApiModelProperty("商品ID,goods_type=1关联video.id,=2关联source.id")
|
||||
private Long goodsId;
|
||||
private Long faceId;
|
||||
@ApiModelProperty("景区名称")
|
||||
private String scenicName;
|
||||
@ApiModelProperty("商品名称 模版名称/原片x个/照片x个")
|
||||
|
@ -0,0 +1,19 @@
|
||||
package com.ycwl.basic.model.pc.payment.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
@TableName("payment")
|
||||
@Data
|
||||
public class PaymentEntity {
|
||||
private Long id;
|
||||
private Long memberId;
|
||||
private Long orderId;
|
||||
private String outOrderNo;
|
||||
private BigDecimal payPrice;
|
||||
private Date createTime;
|
||||
private Date payTime;
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.ycwl.basic.model.pc.refund.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
@TableName("refund")
|
||||
@Data
|
||||
public class RefundEntity {
|
||||
private Long id;
|
||||
private Long memberId;
|
||||
private Long orderId;
|
||||
private String outRefundNo;
|
||||
private BigDecimal refundPrice;
|
||||
private String reason;
|
||||
private Date createTime;
|
||||
private Date acceptTime;
|
||||
}
|
@ -28,4 +28,6 @@ public class WXPayOrderReqVO {
|
||||
private Long orderSn;
|
||||
|
||||
private String description;
|
||||
|
||||
private Long memberId;
|
||||
}
|
||||
|
Reference in New Issue
Block a user