订单详情

This commit is contained in:
2025-01-03 16:46:16 +08:00
parent a91389ca99
commit 8e95d1b390
5 changed files with 69 additions and 142 deletions

View File

@ -77,21 +77,14 @@ public class OrderAppRespVO {
@ApiModelProperty("订单退款时间")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date refundAt;
private Long scenicId;
@ApiModelProperty("景区名称")
private String scenicName;
@ApiModelProperty("商品名称")
private String goodsName;
@ApiModelProperty("拍摄时间")
private Date shootingTime;
/**
* 商品类型,0其他,1成片,2原片,3模板成片
*/
@ApiModelProperty("商品类型,1成片,2源素材")
@ApiModelProperty("商品类型,0成片,12源素材")
private Integer goodsType;
@ApiModelProperty("封面图片(来自模版封面图片)")
private String coverUrl;
@ApiModelProperty("原素材类型:1视频,2图像")
private Integer sourceType;
@ApiModelProperty("订单明细")
private List<OrderItemVO> orderItemList;
}

View File

@ -38,8 +38,10 @@ public class OrderItemVO {
private String videoUrl;
@ApiModelProperty("图片存储地址")
private String imgUrl;
private String coverUrl;
@ApiModelProperty("原素材类型:1视频,2图像")
private Integer sourceType;
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
private Date shootingTime;
}