Commit 97bfac1d authored by hezhen's avatar hezhen

修改

parent d3402e71
......@@ -23,7 +23,12 @@ public class TourGoodBanner implements Serializable {
@Id
@GeneratedValue(generator = "JDBC")
@ApiModelProperty("首页banner图主键")
private Long id;
private Integer id;
//商品id
@Column(name = "good_id")
@ApiModelProperty("商品id")
private Integer goodId;
//标题
@Column(name = "title")
......
......@@ -24,8 +24,14 @@ public class TourTagBanner implements Serializable {
@GeneratedValue(generator = "JDBC")
@ApiModelProperty("首页banner图主键")
private Long id;
//标题
//标签id
@Column(name = "tag_id")
@ApiModelProperty(value = "标签id")
private Integer tagId;
//标题
@Column(name = "title")
@ApiModelProperty(value = "标题")
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