记得上下班打卡 | git大法好,push需谨慎

Commit 45ee5049 authored by 胡佳晨's avatar 胡佳晨

修改演出列表 示例

parent 94961735
......@@ -14,24 +14,24 @@ public class PerformancePartnerListParam {
private String merchantId;
@ApiModelProperty(value = "演出名称", example = "")
private String title;
@ApiModelProperty(value = "-2全部(不包括未提交)0未发布演出列表;3审核通过;6上线;7下架;8已结束;", example = "0")
@ApiModelProperty(value = "-2全部(不包括未提交)0未发布演出列表;3审核通过;6上线;7下架;8已结束;", example = "-2")
@NotNull(message = "演出状态不能为空")
private Integer status;
@ApiModelProperty(value = "-2全部,-1未提交审核,0审核中,1审核通过,2审核拒绝", example = "0")
@ApiModelProperty(value = "-2全部,-1未提交审核,0审核中,1审核通过,2审核拒绝", example = "-2")
@NotNull(message = "审核状态不能为空")
private Integer auditStatus;
@ApiModelProperty(value = "演出开始时间", example = "2000-01-01 12:00:00")
@ApiModelProperty(value = "演出开始时间")
private String timeStart;
@ApiModelProperty(value = "演出结束时间", example = "2000-01-01 12:00:00")
@ApiModelProperty(value = "演出结束时间")
private String timeEnd;
@ApiModelProperty(value = "排序类型 1创建时间倒序 2创建时间正序 3演出时间倒序 4演出时间正序", example = "0")
@ApiModelProperty(value = "排序类型 1创建时间倒序 2创建时间正序 3演出时间倒序 4演出时间正序", example = "1")
@NotNull(message = "排序类型不能为空")
private Integer orderType;
@ApiModelProperty(value = "停售时间(单位天 -2全部)", example = "-2")
private long stopSellDay;
@ApiModelProperty(value = "停售时间(单位天 -2全部)", example = "-2", hidden = true)
@ApiModelProperty(value = "停售时间(单位天 -2全部)" ,hidden = true)
private String stopSellTime;
@ApiModelProperty(value = "页数", example = "0")
@ApiModelProperty(value = "页数", example = "1")
@NotNull(message = "页数不能为空")
private Integer page;
@ApiModelProperty(value = "数量", example = "20")
......
......@@ -21,6 +21,7 @@ import com.liquidnet.service.kylin.dto.vo.ticketSystem.TicketPriceVo;
import com.liquidnet.service.kylin.dto.vo.ticketSystem.TicketVo;
import com.liquidnet.service.kylin.dto.vo.ticketSystem.TimesVo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import org.springframework.util.MultiValueMap;
......@@ -35,8 +36,8 @@ import static com.liquidnet.commons.lang.util.DateUtil.DTF_YMD_HMS;
@Service
public class InnerService {
// @Value("${liquidnet.service.platform.url}")
private String platform = "http://127.0.0.1:9003";
@Value("${liquidnet.service.platform.url}")
private String platform;
@Autowired
RedisUtil redisUtil;
@Autowired
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment