Commit 97bfac1d authored by hezhen's avatar hezhen

修改

parent d3402e71
...@@ -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")
......
...@@ -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