?? userauthxdao.java
字號(hào):
package com.saas.biz.dao.userauthxDAO;
/**
* UserauthxId generated by MyEclipse Persistence Tools
*/
public class UserauthxDAO implements java.io.Serializable{
private static final long serialVersionUID = -3066322103066022599L;
private Integer id;
private String user;
private String programname;
private Integer authid;
private String grantbyuser;
private Integer part;
private String pubtime;
// Constructors
/** default constructor */
public UserauthxDAO() {}
/** full constructor */
public UserauthxDAO(Integer id, String user, String programname, Integer authid, String grantbyuser, Integer part, String pubtime) {
this.id = id;
this.user = user;
this.programname = programname;
this.authid = authid;
this.grantbyuser = grantbyuser;
this.part = part;
this.pubtime = pubtime;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getUser() {
return this.user;
}
public void setUser(String user) {
this.user = user;
}
public String getProgramname() {
return this.programname;
}
public void setProgramname(String programname) {
this.programname = programname;
}
public Integer getAuthid() {
return this.authid;
}
public void setAuthid(Integer authid) {
this.authid = authid;
}
public String getGrantbyuser() {
return this.grantbyuser;
}
public void setGrantbyuser(String grantbyuser) {
this.grantbyuser = grantbyuser;
}
public Integer getPart() {
return this.part;
}
public void setPart(Integer part) {
this.part = part;
}
public String getPubtime() {
return this.pubtime;
}
public void setPubtime(String pubtime) {
this.pubtime = pubtime;
}
public boolean equals(Object other) {
if ((this == other))
return true;
if ((other == null))
return false;
if (!(other instanceof UserauthxDAO))
return false;
UserauthxDAO castOther = (UserauthxDAO) other;
return ((this.getId() == castOther.getId()) || (this.getId() != null && castOther.getId() != null && this.getId().equals(castOther.getId()))) && ((this.getUser() == castOther.getUser()) || (this.getUser() != null && castOther.getUser() != null && this.getUser().equals(castOther.getUser()))) && ((this.getProgramname() == castOther.getProgramname()) || (this.getProgramname() != null && castOther.getProgramname() != null && this.getProgramname().equals(castOther.getProgramname())))
&& ((this.getAuthid() == castOther.getAuthid()) || (this.getAuthid() != null && castOther.getAuthid() != null && this.getAuthid().equals(castOther.getAuthid()))) && ((this.getGrantbyuser() == castOther.getGrantbyuser()) || (this.getGrantbyuser() != null && castOther.getGrantbyuser() != null && this.getGrantbyuser().equals(castOther.getGrantbyuser())))
&& ((this.getPart() == castOther.getPart()) || (this.getPart() != null && castOther.getPart() != null && this.getPart().equals(castOther.getPart()))) && ((this.getPubtime() == castOther.getPubtime()) || (this.getPubtime() != null && castOther.getPubtime() != null && this.getPubtime().equals(castOther.getPubtime())));
}
public int hashCode() {
int result = 17;
result = 37 * result + (getId() == null ? 0 : this.getId().hashCode());
result = 37 * result + (getUser() == null ? 0 : this.getUser().hashCode());
result = 37 * result + (getProgramname() == null ? 0 : this.getProgramname().hashCode());
result = 37 * result + (getAuthid() == null ? 0 : this.getAuthid().hashCode());
result = 37 * result + (getGrantbyuser() == null ? 0 : this.getGrantbyuser().hashCode());
result = 37 * result + (getPart() == null ? 0 : this.getPart().hashCode());
result = 37 * result + (getPubtime() == null ? 0 : this.getPubtime().hashCode());
return result;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -