/** * Դ�������ƣ�TableField.java * �������Ȩ���������ӹɷ����޹�˾ ��Ȩ���� * ϵͳ���ƣ�JRES Studio * ģ�����ƣ�com.hundsun.ares.studio.jres.database.ui * ����˵����$desc * ����ĵ��� * ���ߣ� */ package com.hundsun.ares.studio.jres.database.pdm.bean; import java.util.HashSet; import java.util.Set; import org.apache.commons.lang.StringUtils; /** * @author liaogc * */ public class PDMTableField { private String newName ="";//���ֶ����� private String name = "";//���ֶ��� private String table = "";//���ֶ��������� private String desc = "";//���ֶ�˵�� private String type = "";//ԭʼ���� private String busType = "";//ԭʼ���Ͷ�Ӧ��ҵ������ private String subSystem = "";//���ֶ�������ϵͳ private boolean isChanged = false;//�Ƿ��Ѿ�����Ψһ���� private String chineseName = ""; private String mandatory = ""; private Set<String> beLongTable = new HashSet<String>(); /** * @return the isChanged */ public boolean isChanged() { return isChanged; } /** * @param isChanged the isChanged to set */ public void setChanged(boolean isChanged) { this.isChanged = isChanged; } /** * @return the beLongOtherTable */ public Set<String> getBeLongTable() { return beLongTable; } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the table */ public String getTable() { return table; } /** * @param table the table to set */ public void setTable(String table) { this.table = table; } /** * @return the desc */ public String getDesc() { return desc; } /** * @param desc the desc to set */ public void setDesc(String desc) { this.desc = desc; } /** * @return the type */ public String getType() { return type; } /** * @param type the type to set */ public void setType(String type) { this.type = type; } /** * @return the chineseName */ public String getChineseName() { return chineseName; } /** * @param chineseName the chineseName to set */ public void setChineseName(String chineseName) { this.chineseName = chineseName; } /** * @return the busType */ public String getBusType() { return busType; } /** * @param busType the busType to set */ public void setBusType(String busType) { this.busType = busType; } /** * @return the mandatory */ public String getMandatory() { return mandatory; } /** * @param mandatory the mandatory to set */ public void setMandatory(String mandatory) { this.mandatory = mandatory; } /** * @return the newName */ public String getNewName() { return newName; } /** * @param newName the newName to set */ public void setNewName(String newName) { this.newName = newName; } /** * @return the subSystem */ public String getSubSystem() { return subSystem; } /** * @param subSystem the subSystem to set */ public void setSubSystem(String subSystem) { this.subSystem = subSystem; } }