Commit e300a0bd authored by 周健威's avatar 周健威

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

parents e2829fde 97bfac1d
...@@ -23,7 +23,12 @@ public class TourGoodBanner implements Serializable { ...@@ -23,7 +23,12 @@ public class TourGoodBanner implements Serializable {
@Id @Id
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
@ApiModelProperty("首页banner图主键") @ApiModelProperty("首页banner图主键")
private Long id; private Integer id;
//商品id
@Column(name = "good_id")
@ApiModelProperty("商品id")
private Integer goodId;
//标题 //标题
@Column(name = "title") @Column(name = "title")
......
...@@ -52,9 +52,9 @@ public class TourGoodSpePrice implements Serializable { ...@@ -52,9 +52,9 @@ public class TourGoodSpePrice implements Serializable {
private BigDecimal price; private BigDecimal price;
//儿童价格 //儿童价格
@Column(name = "chid_price") @Column(name = "child_price")
@ApiModelProperty(value = "儿童价格") @ApiModelProperty(value = "儿童价格")
private BigDecimal chidPrice; private BigDecimal childPrice;
//会员价格 //会员价格
@Column(name = "member_price") @Column(name = "member_price")
......
...@@ -24,8 +24,14 @@ public class TourTagBanner implements Serializable { ...@@ -24,8 +24,14 @@ public class TourTagBanner implements Serializable {
@GeneratedValue(generator = "JDBC") @GeneratedValue(generator = "JDBC")
@ApiModelProperty("首页banner图主键") @ApiModelProperty("首页banner图主键")
private Long id; private Long id;
//标题 //标签id
@Column(name = "tag_id")
@ApiModelProperty(value = "标签id")
private Integer tagId;
//标题
@Column(name = "title") @Column(name = "title")
@ApiModelProperty(value = "标题") @ApiModelProperty(value = "标题")
private String title; private String title;
......
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