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

📄 sjzdpo.java

📁 数据字典 TAG标签 用于支持数据对照 支持各种radio check list显示
💻 JAVA
字号:
package com.beiktech.hib.po;

import java.util.ArrayList;
import java.util.List;

public class SjzdPo {
	private String code;
	private String fcode;
	private String name;
	private String ffcode;
	private Integer pos;
	private String valid;
	private String type;
	private String edit;
	private String explain;
	
	private List childList = new ArrayList();
	private SjzdPo fsp;
	
	public void addChlid(SjzdPo ctp){
		childList.add(ctp);
	}
	public List getChildList() {
		return childList;
	}
	public void setChildList(List childList) {
		this.childList = childList;
	}
	public String getCode() {
		return code;
	}
	public void setCode(String code) {
		this.code = code;
	}
	public String getFcode() {
		return fcode;
	}
	public void setFcode(String fcode) {
		this.fcode = fcode;
	}
	public String getFfcode() {
		return ffcode;
	}
	public void setFfcode(String ffcode) {
		this.ffcode = ffcode;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public Integer getPos() {
		return pos;
	}
	public void setPos(Integer pos) {
		this.pos = pos;
	}
	public String getType() {
		return type;
	}
	public void setType(String type) {
		this.type = type;
	}
	public String getValid() {
		return valid;
	}
	public void setValid(String valid) {
		this.valid = valid;
	}
	public SjzdPo getFsp() {
		return fsp;
	}
	public void setFsp(SjzdPo fsp) {
		this.fsp = fsp;
	}
	public String getEdit() {
		return edit;
	}
	public void setEdit(String edit) {
		this.edit = edit;
	}
	public String getExplain() {
		return explain;
	}
	public void setExplain(String explain) {
		this.explain = explain;
	}
}

⌨️ 快捷键说明

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