关联关系修改

This commit is contained in:
2024-12-30 14:37:27 +08:00
parent fd7511ad55
commit aa7d1fab52
17 changed files with 154 additions and 71 deletions

View File

@ -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:图片")

View File

@ -13,6 +13,4 @@ import lombok.Data;
public class ScenicDeviceCountVO {
@ApiModelProperty("景区设备总数")
private Integer totalDeviceCount;
@ApiModelProperty("拍摄到用户的设备数量")
private Integer shotDeviceCount;
}

View File

@ -11,4 +11,5 @@ public class MemberSourceEntity {
private Integer type;
private Long sourceId;
private Integer isBuy;
private Long orderId;
}

View File

@ -35,11 +35,6 @@ public class SourceRespVO {
*/
@ApiModelProperty("来源设备id")
private Long deviceId;
/**
* 所属用户
*/
@ApiModelProperty("所属用户")
private Long memberId;
@ApiModelProperty("原素材类型:1视频,2图像")
private Integer type;
/**

View File

@ -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;
}

View File

@ -41,10 +41,6 @@ public class VideoRespVO {
private BigDecimal slashPrice;
@ApiModelProperty("模版封面图片")
private String templateCoverUrl;
@ApiModelProperty("经度")
private BigDecimal longitude;
@ApiModelProperty("纬度")
private BigDecimal latitude;
/**
* 任务id
*/