You've already forked FrameTour-BE
补充全免费逻辑
This commit is contained in:
@ -26,7 +26,11 @@ public class OrderEntity {
|
||||
*/
|
||||
private String openId;
|
||||
/**
|
||||
* 价格
|
||||
* 划线价
|
||||
*/
|
||||
private BigDecimal slashPrice;
|
||||
/**
|
||||
* 优惠价格
|
||||
*/
|
||||
private BigDecimal price;
|
||||
/**
|
||||
|
@ -31,6 +31,8 @@ public class ScenicAddOrUpdateReq {
|
||||
*/
|
||||
@ApiModelProperty("景区介绍")
|
||||
private String introduction;
|
||||
private String logoUrl;
|
||||
|
||||
@ApiModelProperty("封面图")
|
||||
private String coverUrl;
|
||||
/**
|
||||
|
@ -38,6 +38,7 @@ public class ScenicRespVO {
|
||||
*/
|
||||
@ApiModelProperty("景区介绍")
|
||||
private String introduction;
|
||||
private String logoUrl;
|
||||
@ApiModelProperty("封面图")
|
||||
private String coverUrl;
|
||||
/**
|
||||
|
@ -35,6 +35,7 @@ public class SourceRespVO {
|
||||
*/
|
||||
@ApiModelProperty("来源设备id")
|
||||
private Long deviceId;
|
||||
private String deviceName;
|
||||
private Long faceId;
|
||||
@ApiModelProperty("原素材类型:1视频,2图像")
|
||||
private Integer type;
|
||||
|
@ -25,10 +25,9 @@ public class VideoRespVO {
|
||||
@ApiModelProperty("景区名称")
|
||||
private String scenicName;
|
||||
/**
|
||||
* 用户id
|
||||
* 人脸ID
|
||||
*/
|
||||
@ApiModelProperty("用户id")
|
||||
private Long memberId;
|
||||
@ApiModelProperty("人脸ID")
|
||||
private Long faceId;
|
||||
/**
|
||||
* 模版id
|
||||
|
@ -0,0 +1,10 @@
|
||||
package com.ycwl.basic.model.task.req;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
public class TaskSuccessReqVo extends WorkerAuthReqVo {
|
||||
private VideoInfoReq videoInfo;
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package com.ycwl.basic.model.task.req;
|
||||
|
||||
public class VideoInfoReq {
|
||||
private Integer height;
|
||||
private Integer width;
|
||||
private Float duration;
|
||||
}
|
Reference in New Issue
Block a user