Commit 5befbd76 authored by 周健威's avatar 周健威

Merge remote-tracking branch 'origin/base-modify' into base-modify

parents 43082074 fe2cd05b
...@@ -72,6 +72,11 @@ public class TourGoodDTO { ...@@ -72,6 +72,11 @@ public class TourGoodDTO {
@ApiModelProperty(value = "状态:0-未发布;1-上架;2-下架") @ApiModelProperty(value = "状态:0-未发布;1-上架;2-下架")
private Integer status; private Integer status;
//是否省外;0-省内;1-省外
@ApiModelProperty(value = "是否省外;0-省内;1-省外")
private Integer isOutside;
//是否推荐:0-未推荐;1-已推荐 //是否推荐:0-未推荐;1-已推荐
@ApiModelProperty(value = "是否推荐:0-未推荐;1-已推荐") @ApiModelProperty(value = "是否推荐:0-未推荐;1-已推荐")
private Integer recommend; private Integer recommend;
......
...@@ -90,7 +90,12 @@ public class TourGood implements Serializable { ...@@ -90,7 +90,12 @@ public class TourGood implements Serializable {
@Column(name = "status") @Column(name = "status")
@ApiModelProperty(value = "状态:0-未发布;1-上架;2-下架") @ApiModelProperty(value = "状态:0-未发布;1-上架;2-下架")
private Integer status; private Integer status;
//是否省外;0-省内;1-省外
@Column(name = "is_outside")
@ApiModelProperty(value = "是否省外;0-省内;1-省外")
private Integer isOutside;
//创建时间 //创建时间
@Column(name = "crt_time") @Column(name = "crt_time")
@ApiModelProperty(value = "创建时间", hidden = true ) @ApiModelProperty(value = "创建时间", hidden = true )
......
...@@ -83,6 +83,10 @@ public class TourGoodDetailVo { ...@@ -83,6 +83,10 @@ public class TourGoodDetailVo {
//更新时间 //更新时间
@ApiModelProperty(value = "更新时间", hidden = true ) @ApiModelProperty(value = "更新时间", hidden = true )
private Long updTime; private Long updTime;
//是否省外;0-省内;1-省外
@ApiModelProperty(value = "是否省外;0-省内;1-省外")
private Integer isOutside;
//是否推荐:0-未推荐;1-已推荐 //是否推荐:0-未推荐;1-已推荐
@ApiModelProperty(value = "是否推荐:0-未推荐;1-已推荐") @ApiModelProperty(value = "是否推荐:0-未推荐;1-已推荐")
......
...@@ -2,11 +2,6 @@ package com.xxfc.platform.tour.vo; ...@@ -2,11 +2,6 @@ package com.xxfc.platform.tour.vo;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
import lombok.Data; import lombok.Data;
import javax.persistence.Column;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal; import java.math.BigDecimal;
...@@ -74,6 +69,10 @@ public class TourGoodVo implements Serializable { ...@@ -74,6 +69,10 @@ public class TourGoodVo implements Serializable {
@ApiModelProperty(value = "状态:0-未发布;1-上架;2-下架") @ApiModelProperty(value = "状态:0-未发布;1-上架;2-下架")
private Integer status; private Integer status;
//是否省外;0-省内;1-省外
@ApiModelProperty(value = "是否省外;0-省内;1-省外")
private Integer isOutside;
//天数 //天数
@ApiModelProperty(value = "天数") @ApiModelProperty(value = "天数")
private Integer number; private Integer number;
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
<result property="isMember" column="is_member"/> <result property="isMember" column="is_member"/>
<result property="stock" column="stock"/> <result property="stock" column="stock"/>
<result property="unit" column="unit"/> <result property="unit" column="unit"/>
<result property="isOutside" column="is_outside"/>
</resultMap> </resultMap>
<resultMap type="com.xxfc.platform.tour.vo.TourGoodVo" id="tourGoodVoMap"> <resultMap type="com.xxfc.platform.tour.vo.TourGoodVo" id="tourGoodVoMap">
...@@ -47,6 +48,7 @@ ...@@ -47,6 +48,7 @@
<result property="stock" column="stock"/> <result property="stock" column="stock"/>
<result property="unit" column="unit"/> <result property="unit" column="unit"/>
<result property="tagNames" column="tagNames"/> <result property="tagNames" column="tagNames"/>
<result property="isOutside" column="is_outside"/>
</resultMap> </resultMap>
<!--查询旅游路线列表--> <!--查询旅游路线列表-->
......
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