?? basewebsite.java
字號:
}
/**
* Set the value related to the column: CURRENT_SYSTEM
* @param currentSystem the CURRENT_SYSTEM value
*/
public void setCurrentSystem (java.lang.String currentSystem) {
this.currentSystem = currentSystem;
}
/**
* Return the value associated with the column: COOKIE_KEY
*/
public java.lang.String getCookieKey () {
return cookieKey;
}
/**
* Set the value related to the column: COOKIE_KEY
* @param cookieKey the COOKIE_KEY value
*/
public void setCookieKey (java.lang.String cookieKey) {
this.cookieKey = cookieKey;
}
/**
* Return the value associated with the column: OWNER_NAME
*/
public java.lang.String getOwnerName () {
return ownerName;
}
/**
* Set the value related to the column: OWNER_NAME
* @param ownerName the OWNER_NAME value
*/
public void setOwnerName (java.lang.String ownerName) {
this.ownerName = ownerName;
}
/**
* Return the value associated with the column: OWNER_IDENTITY
*/
public java.lang.String getOwnerIdentity () {
return ownerIdentity;
}
/**
* Set the value related to the column: OWNER_IDENTITY
* @param ownerIdentity the OWNER_IDENTITY value
*/
public void setOwnerIdentity (java.lang.String ownerIdentity) {
this.ownerIdentity = ownerIdentity;
}
/**
* Return the value associated with the column: COMPANY
*/
public java.lang.String getCompany () {
return company;
}
/**
* Set the value related to the column: COMPANY
* @param company the COMPANY value
*/
public void setCompany (java.lang.String company) {
this.company = company;
}
/**
* Return the value associated with the column: COPYRIGHT
*/
public java.lang.String getCopyright () {
return copyright;
}
/**
* Set the value related to the column: COPYRIGHT
* @param copyright the COPYRIGHT value
*/
public void setCopyright (java.lang.String copyright) {
this.copyright = copyright;
}
/**
* Return the value associated with the column: RECORD_CODE
*/
public java.lang.String getRecordCode () {
return recordCode;
}
/**
* Set the value related to the column: RECORD_CODE
* @param recordCode the RECORD_CODE value
*/
public void setRecordCode (java.lang.String recordCode) {
this.recordCode = recordCode;
}
/**
* Return the value associated with the column: EMAIL
*/
public java.lang.String getEmail () {
return email;
}
/**
* Set the value related to the column: EMAIL
* @param email the EMAIL value
*/
public void setEmail (java.lang.String email) {
this.email = email;
}
/**
* Return the value associated with the column: PHONE_CODE
*/
public java.lang.String getPhoneCode () {
return phoneCode;
}
/**
* Set the value related to the column: PHONE_CODE
* @param phoneCode the PHONE_CODE value
*/
public void setPhoneCode (java.lang.String phoneCode) {
this.phoneCode = phoneCode;
}
/**
* Return the value associated with the column: MOBILE_CODE
*/
public java.lang.String getMobileCode () {
return mobileCode;
}
/**
* Set the value related to the column: MOBILE_CODE
* @param mobileCode the MOBILE_CODE value
*/
public void setMobileCode (java.lang.String mobileCode) {
this.mobileCode = mobileCode;
}
/**
* Return the value associated with the column: CREATE_TIME
*/
public java.util.Date getCreateTime () {
return createTime;
}
/**
* Set the value related to the column: CREATE_TIME
* @param createTime the CREATE_TIME value
*/
public void setCreateTime (java.util.Date createTime) {
this.createTime = createTime;
}
/**
* Return the value associated with the column: CLOSE_REASON
*/
public java.lang.String getCloseReason () {
return closeReason;
}
/**
* Set the value related to the column: CLOSE_REASON
* @param closeReason the CLOSE_REASON value
*/
public void setCloseReason (java.lang.String closeReason) {
this.closeReason = closeReason;
}
/**
* Return the value associated with the column: IS_CLOSE
*/
public java.lang.Boolean getClose () {
return close;
}
/**
* Set the value related to the column: IS_CLOSE
* @param close the IS_CLOSE value
*/
public void setClose (java.lang.Boolean close) {
this.close = close;
}
public com.jeecms.core.entity.EmailSender getEmailSender () {
return m_emailSender;
}
/**
* Set the value related to the column: ${prop.Column}
* @param m_emailSender the ${prop.Column} value
*/
public void setEmailSender (com.jeecms.core.entity.EmailSender m_emailSender) {
this.m_emailSender = m_emailSender;
}
public com.jeecms.core.entity.Control getControl () {
return m_control;
}
/**
* Set the value related to the column: ${prop.Column}
* @param m_control the ${prop.Column} value
*/
public void setControl (com.jeecms.core.entity.Control m_control) {
this.m_control = m_control;
}
/**
* Return the value associated with the column: PARENT
*/
public com.jeecms.core.entity.Website getParent () {
return parent;
}
/**
* Set the value related to the column: PARENT
* @param parent the PARENT value
*/
public void setParent (com.jeecms.core.entity.Website parent) {
this.parent = parent;
}
/**
* Return the value associated with the column: GLOBAL_ID
*/
public com.jeecms.core.entity.Global getGlobal () {
return global;
}
/**
* Set the value related to the column: GLOBAL_ID
* @param global the GLOBAL_ID value
*/
public void setGlobal (com.jeecms.core.entity.Global global) {
this.global = global;
}
/**
* Return the value associated with the column: child
*/
public java.util.Set<com.jeecms.core.entity.Website> getChild () {
return child;
}
/**
* Set the value related to the column: child
* @param child the child value
*/
public void setChild (java.util.Set<com.jeecms.core.entity.Website> child) {
this.child = child;
}
/**
* Return the value associated with the column: solutions
*/
public java.util.Map<java.lang.String, java.lang.String> getSolutions () {
return solutions;
}
/**
* Set the value related to the column: solutions
* @param solutions the solutions value
*/
public void setSolutions (java.util.Map<java.lang.String, java.lang.String> solutions) {
this.solutions = solutions;
}
public boolean equals (Object obj) {
if (null == obj) return false;
if (!(obj instanceof com.jeecms.core.entity.Website)) return false;
else {
com.jeecms.core.entity.Website website = (com.jeecms.core.entity.Website) obj;
if (null == this.getId() || null == website.getId()) return false;
else return (this.getId().equals(website.getId()));
}
}
public int hashCode () {
if (Integer.MIN_VALUE == this.hashCode) {
if (null == this.getId()) return super.hashCode();
else {
String hashStr = this.getClass().getName() + ":" + this.getId().hashCode();
this.hashCode = hashStr.hashCode();
}
}
return this.hashCode;
}
public String toString () {
return super.toString();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -