parent
ff1028e32d
commit
a6a3d670c2
@ -1,31 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||||
<!DOCTYPE hibernate-mapping PUBLIC |
|
||||||
"-//Hibernate/Hibernate Mapping DTD 3.0//EN" |
|
||||||
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> |
|
||||||
<hibernate-mapping package="com.app.bean"> |
|
||||||
<class name="House"> |
|
||||||
<id name="id" column="ID" type="int"> |
|
||||||
<generator class="identity" /> |
|
||||||
</id><property name="rooname" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="size" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="thunb" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="price" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="description" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="created" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="content" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="lat" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="lng" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="userid" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="username" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="pid" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="cid" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="aid" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="state" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="address" not-null="false" type="java.lang.String" /> |
|
||||||
<property name="cate" not-null="false" type="java.lang.String" /> |
|
||||||
|
|
||||||
<property name="communityId" not-null="true" type="java.lang.Integer"/> |
|
||||||
<property name="total" not-null="true" type="java.lang.Integer"/> |
|
||||||
<property name="remain" not-null="true" type="java.lang.Integer"/> |
|
||||||
|
|
||||||
</class></hibernate-mapping> |
|
@ -1,213 +1,274 @@ |
|||||||
package com.app.bean; |
package com.app.bean; |
||||||
|
|
||||||
public class House { |
import javax.persistence.*; |
||||||
public int id; |
import java.util.Objects; |
||||||
public String rooname; |
|
||||||
public String address; |
|
||||||
public String cate; |
|
||||||
|
|
||||||
|
@Entity |
||||||
|
public class House { |
||||||
|
private Integer id; |
||||||
|
private String rooname; |
||||||
|
private String size; |
||||||
|
private String thunb; |
||||||
|
private Integer price; |
||||||
|
private String description; |
||||||
|
private String created; |
||||||
|
private String content; |
||||||
|
private String lat; |
||||||
|
private String lng; |
||||||
|
private Integer userid; |
||||||
|
private String username; |
||||||
|
private Integer pid; |
||||||
|
private Integer cid; |
||||||
|
private Integer aid; |
||||||
|
private Integer state; |
||||||
|
private String address; |
||||||
|
private String cate; |
||||||
private Integer communityId; |
private Integer communityId; |
||||||
|
|
||||||
private Integer total; |
private Integer total; |
||||||
|
|
||||||
private Integer remain; |
private Integer remain; |
||||||
|
|
||||||
public Integer getCommunityId() { |
@Id |
||||||
return communityId; |
@Column(name = "id") |
||||||
} |
@SequenceGenerator(name="increment") |
||||||
|
@GeneratedValue(strategy=GenerationType.IDENTITY) |
||||||
public void setCommunityId(Integer communityId) { |
public Integer getId() { |
||||||
this.communityId = communityId; |
return id; |
||||||
} |
|
||||||
|
|
||||||
public Integer getTotal() { |
|
||||||
return total; |
|
||||||
} |
|
||||||
|
|
||||||
public void setTotal(Integer total) { |
|
||||||
this.total = total; |
|
||||||
} |
|
||||||
|
|
||||||
public Integer getRemain() { |
|
||||||
return remain; |
|
||||||
} |
|
||||||
|
|
||||||
public void setRemain(Integer remain) { |
|
||||||
this.remain = remain; |
|
||||||
} |
|
||||||
|
|
||||||
public String getCate() { |
|
||||||
return cate; |
|
||||||
} |
|
||||||
|
|
||||||
public void setCate(String cate) { |
|
||||||
this.cate = cate; |
|
||||||
} |
} |
||||||
|
|
||||||
public String getAddress() { |
public void setId(Integer id) { |
||||||
return address; |
this.id = id; |
||||||
} |
} |
||||||
|
|
||||||
public void setAddress(String address) { |
@Basic |
||||||
this.address = address; |
@Column(name = "rooname") |
||||||
|
public String getRooname() { |
||||||
|
return rooname; |
||||||
} |
} |
||||||
|
|
||||||
public void setRooname(String rooname) { |
public void setRooname(String rooname) { |
||||||
this.rooname = rooname; |
this.rooname = rooname; |
||||||
} |
} |
||||||
|
|
||||||
public String getRooname() { |
@Basic |
||||||
return rooname; |
@Column(name = "size") |
||||||
|
public String getSize() { |
||||||
|
return size; |
||||||
} |
} |
||||||
|
|
||||||
public String size; |
|
||||||
|
|
||||||
public void setSize(String size) { |
public void setSize(String size) { |
||||||
this.size = size; |
this.size = size; |
||||||
} |
} |
||||||
|
|
||||||
public String getSize() { |
@Basic |
||||||
return size; |
@Column(name = "thunb") |
||||||
|
public String getThunb() { |
||||||
|
return thunb; |
||||||
} |
} |
||||||
|
|
||||||
public String thunb; |
|
||||||
|
|
||||||
public void setThunb(String thunb) { |
public void setThunb(String thunb) { |
||||||
this.thunb = thunb; |
this.thunb = thunb; |
||||||
} |
} |
||||||
|
|
||||||
public String getThunb() { |
@Basic |
||||||
return thunb; |
@Column(name = "price") |
||||||
|
public Integer getPrice() { |
||||||
|
return price; |
||||||
} |
} |
||||||
|
|
||||||
public String price; |
public void setPrice(Integer price) { |
||||||
|
|
||||||
public void setPrice(String price) { |
|
||||||
this.price = price; |
this.price = price; |
||||||
} |
} |
||||||
|
|
||||||
public String getPrice() { |
@Basic |
||||||
return price; |
@Column(name = "description") |
||||||
|
public String getDescription() { |
||||||
|
return description; |
||||||
} |
} |
||||||
|
|
||||||
public String description; |
|
||||||
|
|
||||||
public void setDescription(String description) { |
public void setDescription(String description) { |
||||||
this.description = description; |
this.description = description; |
||||||
} |
} |
||||||
|
|
||||||
public String getDescription() { |
@Basic |
||||||
return description; |
@Column(name = "created") |
||||||
|
public String getCreated() { |
||||||
|
return created; |
||||||
} |
} |
||||||
|
|
||||||
public String created; |
|
||||||
|
|
||||||
public void setCreated(String created) { |
public void setCreated(String created) { |
||||||
this.created = created; |
this.created = created; |
||||||
} |
} |
||||||
|
|
||||||
public String getCreated() { |
@Basic |
||||||
return created; |
@Column(name = "content") |
||||||
|
public String getContent() { |
||||||
|
return content; |
||||||
} |
} |
||||||
|
|
||||||
public String content; |
|
||||||
|
|
||||||
public void setContent(String content) { |
public void setContent(String content) { |
||||||
this.content = content; |
this.content = content; |
||||||
} |
} |
||||||
|
|
||||||
public String getContent() { |
@Basic |
||||||
return content; |
@Column(name = "lat") |
||||||
|
public String getLat() { |
||||||
|
return lat; |
||||||
} |
} |
||||||
|
|
||||||
public String lat; |
|
||||||
|
|
||||||
public void setLat(String lat) { |
public void setLat(String lat) { |
||||||
this.lat = lat; |
this.lat = lat; |
||||||
} |
} |
||||||
|
|
||||||
public String getLat() { |
@Basic |
||||||
return lat; |
@Column(name = "lng") |
||||||
|
public String getLng() { |
||||||
|
return lng; |
||||||
} |
} |
||||||
|
|
||||||
public String lng; |
|
||||||
|
|
||||||
public void setLng(String lng) { |
public void setLng(String lng) { |
||||||
this.lng = lng; |
this.lng = lng; |
||||||
} |
} |
||||||
|
|
||||||
public String getLng() { |
@Basic |
||||||
return lng; |
@Column(name = "userid") |
||||||
|
public Integer getUserid() { |
||||||
|
return userid; |
||||||
} |
} |
||||||
|
|
||||||
public String userid; |
public void setUserid(Integer userid) { |
||||||
|
|
||||||
public void setUserid(String userid) { |
|
||||||
this.userid = userid; |
this.userid = userid; |
||||||
} |
} |
||||||
|
|
||||||
public String getUserid() { |
@Basic |
||||||
return userid; |
@Column(name = "username") |
||||||
|
public String getUsername() { |
||||||
|
return username; |
||||||
} |
} |
||||||
|
|
||||||
public String username; |
|
||||||
|
|
||||||
public void setUsername(String username) { |
public void setUsername(String username) { |
||||||
this.username = username; |
this.username = username; |
||||||
} |
} |
||||||
|
|
||||||
public String getUsername() { |
@Basic |
||||||
return username; |
@Column(name = "pid") |
||||||
|
public Integer getPid() { |
||||||
|
return pid; |
||||||
} |
} |
||||||
|
|
||||||
public String pid; |
public void setPid(Integer pid) { |
||||||
|
|
||||||
public void setPid(String pid) { |
|
||||||
this.pid = pid; |
this.pid = pid; |
||||||
} |
} |
||||||
|
|
||||||
public String getPid() { |
@Basic |
||||||
return pid; |
@Column(name = "cid") |
||||||
|
public Integer getCid() { |
||||||
|
return cid; |
||||||
} |
} |
||||||
|
|
||||||
public String cid; |
public void setCid(Integer cid) { |
||||||
|
|
||||||
public void setCid(String cid) { |
|
||||||
this.cid = cid; |
this.cid = cid; |
||||||
} |
} |
||||||
|
|
||||||
public String getCid() { |
@Basic |
||||||
return cid; |
@Column(name = "aid") |
||||||
|
public Integer getAid() { |
||||||
|
return aid; |
||||||
} |
} |
||||||
|
|
||||||
public String aid; |
public void setAid(Integer aid) { |
||||||
|
|
||||||
public void setAid(String aid) { |
|
||||||
this.aid = aid; |
this.aid = aid; |
||||||
} |
} |
||||||
|
|
||||||
public String getAid() { |
@Basic |
||||||
return aid; |
@Column(name = "state") |
||||||
|
public Integer getState() { |
||||||
|
return state; |
||||||
} |
} |
||||||
|
|
||||||
public String state; |
public void setState(Integer state) { |
||||||
|
|
||||||
public void setState(String state) { |
|
||||||
this.state = state; |
this.state = state; |
||||||
} |
} |
||||||
|
|
||||||
public String getState() { |
@Basic |
||||||
return state; |
@Column(name = "address") |
||||||
|
public String getAddress() { |
||||||
|
return address; |
||||||
} |
} |
||||||
|
|
||||||
public void setId(int id) { |
public void setAddress(String address) { |
||||||
this.id = id; |
this.address = address; |
||||||
} |
} |
||||||
|
|
||||||
public int getId() { |
@Basic |
||||||
|
@Column(name = "cate") |
||||||
|
public String getCate() { |
||||||
|
return cate; |
||||||
|
} |
||||||
|
|
||||||
return id; |
public void setCate(String cate) { |
||||||
|
this.cate = cate; |
||||||
|
} |
||||||
|
|
||||||
|
@Basic |
||||||
|
@Column(name = "community_id") |
||||||
|
public Integer getCommunityId() { |
||||||
|
return communityId; |
||||||
|
} |
||||||
|
|
||||||
|
public void setCommunityId(Integer communityId) { |
||||||
|
this.communityId = communityId; |
||||||
|
} |
||||||
|
|
||||||
|
@Basic |
||||||
|
@Column(name = "total") |
||||||
|
public Integer getTotal() { |
||||||
|
return total; |
||||||
} |
} |
||||||
|
|
||||||
|
public void setTotal(Integer total) { |
||||||
|
this.total = total; |
||||||
|
} |
||||||
|
|
||||||
|
@Basic |
||||||
|
@Column(name = "remain") |
||||||
|
public Integer getRemain() { |
||||||
|
return remain; |
||||||
|
} |
||||||
|
|
||||||
|
public void setRemain(Integer remain) { |
||||||
|
this.remain = remain; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public boolean equals(Object o) { |
||||||
|
if (this == o) return true; |
||||||
|
if (o == null || getClass() != o.getClass()) return false; |
||||||
|
House house = (House) o; |
||||||
|
return Objects.equals(id, house.id) && |
||||||
|
Objects.equals(rooname, house.rooname) && |
||||||
|
Objects.equals(size, house.size) && |
||||||
|
Objects.equals(thunb, house.thunb) && |
||||||
|
Objects.equals(price, house.price) && |
||||||
|
Objects.equals(description, house.description) && |
||||||
|
Objects.equals(created, house.created) && |
||||||
|
Objects.equals(content, house.content) && |
||||||
|
Objects.equals(lat, house.lat) && |
||||||
|
Objects.equals(lng, house.lng) && |
||||||
|
Objects.equals(userid, house.userid) && |
||||||
|
Objects.equals(username, house.username) && |
||||||
|
Objects.equals(pid, house.pid) && |
||||||
|
Objects.equals(cid, house.cid) && |
||||||
|
Objects.equals(aid, house.aid) && |
||||||
|
Objects.equals(state, house.state) && |
||||||
|
Objects.equals(address, house.address) && |
||||||
|
Objects.equals(cate, house.cate) && |
||||||
|
Objects.equals(communityId, house.communityId) && |
||||||
|
Objects.equals(total, house.total) && |
||||||
|
Objects.equals(remain, house.remain); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public int hashCode() { |
||||||
|
return Objects.hash(id, rooname, size, thunb, price, description, created, content, lat, lng, userid, username, pid, cid, aid, state, address, cate, communityId, total, remain); |
||||||
|
} |
||||||
} |
} |
Loading…
Reference in new issue