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

📄 codetableedit.java

📁 本源码为教学管理信息系统
💻 JAVA
字号:
//Source file: D:\\航务局项目\\源程序\\com\\olive\\dmwh\\domain\\CodeTable.javapackage com.wygl.dmwh.domain;/** * 代码表,根据代码类型存放相应的代码 */public class CodeTableEdit {		private CodeNavigation codeNavigation;		/**	 * 唯一标识	 */	private String ct_id;	/**	 * 代码	 */	private String code;	/**	 * 代码名称	 */	private String codeName;	/**	 * 父类代码	 */	private String fatherCode;	/**	 * 父类名称	 */	private String fatherName;	/**	 * 备注	 */	private String remark;	/**	 * 自类代码数量	 */	private int childCount;	/**	 * 代码类型	 */	private String codeType;	/**	 * 部门代码	 */	private String dept_id;	/**	 * 代码层次	 */	private String layer;		/**	 * 0--可编辑;1--不可编辑	 */	private String isEdit;	public CodeNavigation getCodeNavigation() {		return codeNavigation;	}	public void setCodeNavigation(CodeNavigation codeNavigation) {		this.codeNavigation = codeNavigation;	}	public int getChildCount() {		return childCount;	}	public void setChildCount(int childCount) {		this.childCount = childCount;	}	public String getCode() {		return code;	}	public void setCode(String code) {		this.code = code;	}	public String getCodeName() {		return codeName;	}	public void setCodeName(String codeName) {		this.codeName = codeName;	}	public String getCodeType() {		return codeType;	}	public void setCodeType(String codeType) {		this.codeType = codeType;	}	public String getCt_id() {		return ct_id;	}	public void setCt_id(String ct_id) {		this.ct_id = ct_id;	}	public String getFatherCode() {		return fatherCode;	}	public void setFatherCode(String fatherCode) {		this.fatherCode = fatherCode;	}	public String getFatherName() {		return fatherName;	}	public void setFatherName(String fatherName) {		this.fatherName = fatherName;	}	public String getIsEdit() {		return isEdit;	}	public void setIsEdit(String isEdit) {		this.isEdit = isEdit;	}	public String getRemark() {		return remark;	}	public void setRemark(String remark) {		this.remark = remark;	}	public String getDept_id() {		return dept_id;	}	public void setDept_id(String dept_id) {		this.dept_id = dept_id;	}	public String getLayer() {		return layer;	}	public void setLayer(String layer) {		this.layer = layer;	}}

⌨️ 快捷键说明

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