You've already forked FrameTour-BE
修改
This commit is contained in:
@ -41,6 +41,7 @@ public class VideoGoodsDetailVO {
|
||||
private Date createTime;
|
||||
@ApiModelProperty("价格")
|
||||
private String price;
|
||||
private String slashPrice;
|
||||
@ApiModelProperty("是否已购买 0否 1是")
|
||||
private Integer isBuy;
|
||||
@ApiModelProperty("镜头数")
|
||||
|
@ -0,0 +1,10 @@
|
||||
package com.ycwl.basic.model.mobile.goods;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class VideoTaskStatusVO {
|
||||
private Integer status;
|
||||
private Long faceId;
|
||||
private Long scenicId;
|
||||
}
|
@ -84,4 +84,6 @@ public class ScenicAddOrUpdateReq {
|
||||
private String account;
|
||||
@ApiModelProperty("密码")
|
||||
private String password;
|
||||
private String kfCodeUrl;
|
||||
private String kfPhone;
|
||||
}
|
||||
|
@ -88,4 +88,6 @@ public class ScenicRespVO {
|
||||
private BigDecimal price;
|
||||
@ApiModelProperty("镜头数")
|
||||
private Integer lensNum;
|
||||
private String kfCodeUrl;
|
||||
private String kfPhone;
|
||||
}
|
||||
|
@ -44,6 +44,7 @@ public class SourceReqQuery extends BaseQueryParameterReq {
|
||||
private String url;
|
||||
@ApiModelProperty("是否被购买:0未购买,1已购买")
|
||||
private Integer isBuy;
|
||||
private Integer faceId;
|
||||
private Date startTime;
|
||||
private Date endTime;
|
||||
}
|
||||
|
@ -65,6 +65,7 @@ public class TemplateEntity {
|
||||
* 价格,单位元
|
||||
*/
|
||||
private BigDecimal price;
|
||||
private BigDecimal slashPrice;
|
||||
/**
|
||||
* 是否启用,0不是,1是
|
||||
*/
|
||||
|
@ -85,5 +85,6 @@ public class TemplateRespVO {
|
||||
private Date updateTime;
|
||||
private List<TemplateRespVO> children;
|
||||
private BigDecimal price;
|
||||
private BigDecimal slashPrice;
|
||||
private Integer sort;
|
||||
}
|
||||
|
@ -38,6 +38,7 @@ public class VideoRespVO {
|
||||
private String templateName;
|
||||
@ApiModelProperty("模版价格")
|
||||
private BigDecimal templatePrice;
|
||||
private BigDecimal slashPrice;
|
||||
@ApiModelProperty("模版封面图片")
|
||||
private String templateCoverUrl;
|
||||
@ApiModelProperty("经度")
|
||||
|
@ -6,7 +6,8 @@ import java.util.List;
|
||||
|
||||
@Data
|
||||
public class SearchFaceRespVo {
|
||||
private float score;
|
||||
private Float score;
|
||||
private List<Long> sampleListIds;
|
||||
private String searchResultJson;
|
||||
private Float firstMatchRate;
|
||||
}
|
||||
|
Reference in New Issue
Block a user