You've already forked FrameTour-BE
实现商品信息查询和商品价格查询逻辑
This commit is contained in:
@ -2,6 +2,7 @@ package com.ycwl.basic.model.pc.video.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
@ -40,6 +41,10 @@ public class VideoEntity {
|
||||
* 视频链接
|
||||
*/
|
||||
private String videoUrl;
|
||||
/**
|
||||
* 是否购买 1是 0否
|
||||
*/
|
||||
private Integer isBuy;
|
||||
private Date createTime;
|
||||
private Date updateTime;
|
||||
}
|
||||
|
@ -47,6 +47,8 @@ public class VideoReqQuery extends BaseQueryParameterReq {
|
||||
*/
|
||||
@ApiModelProperty("视频链接")
|
||||
private String videoUrl;
|
||||
@ApiModelProperty("是否购买 1是 0否")
|
||||
private Integer isBuy;
|
||||
private Date startTime;
|
||||
private Date endTime;
|
||||
}
|
||||
|
@ -7,6 +7,7 @@ import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
@ -23,6 +24,8 @@ public class VideoRespVO {
|
||||
*/
|
||||
@ApiModelProperty("景区id")
|
||||
private Long scenicId;
|
||||
@ApiModelProperty("景区名称")
|
||||
private String scenicName;
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
@ -33,6 +36,14 @@ public class VideoRespVO {
|
||||
*/
|
||||
@ApiModelProperty("模版id")
|
||||
private Long templateId;
|
||||
@ApiModelProperty("模版名称")
|
||||
private String templateName;
|
||||
@ApiModelProperty("模版价格")
|
||||
private BigDecimal tmplatePrice;
|
||||
@ApiModelProperty("经度")
|
||||
private BigDecimal longitude;
|
||||
@ApiModelProperty("纬度")
|
||||
private BigDecimal latitude;
|
||||
/**
|
||||
* 任务id
|
||||
*/
|
||||
@ -48,6 +59,8 @@ public class VideoRespVO {
|
||||
*/
|
||||
@ApiModelProperty("视频链接")
|
||||
private String videoUrl;
|
||||
@ApiModelProperty("是否购买 1是 0否")
|
||||
private Integer isBuy;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
private Date createTime;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
||||
|
Reference in New Issue
Block a user