You've already forked FrameTour-BE
关联关系修改
This commit is contained in:
@ -19,10 +19,6 @@ public class GoodsPageVO {
|
||||
private Long scenicId;
|
||||
@ApiModelProperty("景区名称")
|
||||
private String scenicName;
|
||||
@ApiModelProperty("经度")
|
||||
private BigDecimal longitude;
|
||||
@ApiModelProperty("纬度")
|
||||
private BigDecimal latitude;
|
||||
@ApiModelProperty("商品类型 1:成片视频 2:源素材")
|
||||
private Integer goodsType;
|
||||
@ApiModelProperty("源素材类型 1:视频 2:图片")
|
||||
|
@ -13,6 +13,4 @@ import lombok.Data;
|
||||
public class ScenicDeviceCountVO {
|
||||
@ApiModelProperty("景区设备总数")
|
||||
private Integer totalDeviceCount;
|
||||
@ApiModelProperty("拍摄到用户的设备数量")
|
||||
private Integer shotDeviceCount;
|
||||
}
|
||||
|
@ -11,4 +11,5 @@ public class MemberSourceEntity {
|
||||
private Integer type;
|
||||
private Long sourceId;
|
||||
private Integer isBuy;
|
||||
private Long orderId;
|
||||
}
|
||||
|
@ -35,11 +35,6 @@ public class SourceRespVO {
|
||||
*/
|
||||
@ApiModelProperty("来源设备id")
|
||||
private Long deviceId;
|
||||
/**
|
||||
* 所属用户
|
||||
*/
|
||||
@ApiModelProperty("所属用户")
|
||||
private Long memberId;
|
||||
@ApiModelProperty("原素材类型:1视频,2图像")
|
||||
private Integer type;
|
||||
/**
|
||||
|
@ -0,0 +1,13 @@
|
||||
package com.ycwl.basic.model.pc.video.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class MemberVideoEntity {
|
||||
private Long id;
|
||||
private Long memberId;
|
||||
private Long taskId;
|
||||
private Long videoId;
|
||||
private Integer isBuy;
|
||||
private Long orderId;
|
||||
}
|
@ -41,10 +41,6 @@ public class VideoRespVO {
|
||||
private BigDecimal slashPrice;
|
||||
@ApiModelProperty("模版封面图片")
|
||||
private String templateCoverUrl;
|
||||
@ApiModelProperty("经度")
|
||||
private BigDecimal longitude;
|
||||
@ApiModelProperty("纬度")
|
||||
private BigDecimal latitude;
|
||||
/**
|
||||
* 任务id
|
||||
*/
|
||||
|
Reference in New Issue
Block a user