Commit e3170d31 authored by Quxl's avatar Quxl

x

parent c49541dc
......@@ -14,14 +14,15 @@ public class Fc_news_sender implements java.io.Serializable {
private static final long serialVersionUID = 1L;
@Id
@Column(columnDefinition="int(11)")
private Integer id;
@Column(columnDefinition="int(11)")
private Integer news_id;
@Id
@Column(columnDefinition="int(11)")
private Integer user_id;
@Id
@Column(columnDefinition="int(11)")
private Integer user_group_id;
......@@ -32,6 +33,14 @@ public class Fc_news_sender implements java.io.Serializable {
private Date send_time;
public void setId(Integer id) {
this.id = id;
}
public Integer getId() {
return id;
}
public void setNews_id(Integer news_id) {
this.news_id = news_id;
}
......
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