⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 companybo.java

📁 一段很有意义的源码,看了就知道,不信试一试啊!
💻 JAVA
字号:
package com.wondersgroup.txl.bo;

import com.wondersgroup.core.BaseBo;
import com.wondersgroup.framework.core.bo.Removable;
/**
 * @author 
 * @hibernate.class 
 * table = "BASE_COMPANY" 
 * dynamic-update = "true"
 */
public class CompanyBo extends BaseBo implements Removable {

	private long id;//单位id;
	private long fdwid;//父单位id;
	private String dwmc;//单位名称;
	private String dwdz;//单位地址;
	private String dwyb;//单位邮编;
	private String oh;//区号;
	private String cz;//传真;
	private String zbdh;//值班电话;
	private String email;// email;
	private boolean iscompany;//是否单位(1 是单位, 0 是部门)
		
	/**
	 * @hibernate.property 
	 * column = "cz"
	 * length = "50"
	 * @return
	 */
	public String getCz() {
		return cz;
	}

	public void setCz(String cz) {
		this.cz = cz;
	}

	/**
	 * @hibernate.property 
	 * column = "dwdz"
	 * length = "50"
	 * @return
	 */
	public String getDwdz() {
		return dwdz;
	}

	public void setDwdz(String dwdz) {
		this.dwdz = dwdz;
	}

	/**
	* @hibernate.id 
	* column = "dwid" 
	* generator-class = "sequence" 
	* @hibernate.generator-param 
	* name = "sequence" 
	* value = "SQE_TXL_COMPANY"
	*/
	public long getId() {
		return id;
	}

	public void setId(long id) {
		this.id = id;
	}

	/**
	 * @hibernate.property 
	 * column = "dwmc"
	 * length = "50"
	 * @return
	 */
	public String getDwmc() {
		return dwmc;
	}

	public void setDwmc(String dwmc) {
		this.dwmc = dwmc;
	}

	/**
	 * @hibernate.property 
	 * column = "dwyb"
	 * length = "50"
	 * @return
	 */
	public String getDwyb() {
		return dwyb;
	}

	public void setDwyb(String dwyb) {
		this.dwyb = dwyb;
	}

	/**
	 * @hibernate.property 
	 * column = "email"
	 * length = "50"
	 * @return
	 */
	public String getEmail() {
		return email;
	}

	public void setEmail(String email) {
		this.email = email;
	}

	/**
	 * @hibernate.property 
	 * column = "fdwid"
	 * @return
	 */
	public long getFdwid() {
		return fdwid;
	}

	public void setFdwid(long fdwid) {
		this.fdwid = fdwid;
	}

	/**
	 * @hibernate.property 
	 * column = "oh"
	 * length = "50"
	 * @return
	 */
	public String getOh() {
		return oh;
	}

	public void setOh(String oh) {
		this.oh = oh;
	}

	/**
	 * @hibernate.property 
	 * column = "zbdh"
	 * length = "50"
	 * @return
	 */
	public String getZbdh() {
		return zbdh;
	}

	public void setZbdh(String zbdh) {
		this.zbdh = zbdh;
	}

	/**
	 * @hibernate.property 
	 * column = "iscompany"
	 * @return
	 */
	public boolean isIscompany() {
		return iscompany;
	}

	public void setIscompany(boolean iscompany) {
		this.iscompany = iscompany;
	}


}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -