/** * Դ�������ƣ�PDMColumn.java * �������Ȩ���������ӹɷ����޹�˾ ��Ȩ���� * ϵͳ���ƣ�JRES Studio * ģ�����ƣ�com.hundsun.ares.studio.jres.database.ui * ����˵����$desc * ����ĵ��� * ���ߣ� */ package com.hundsun.ares.studio.jres.database.pdm.bean; /** * @author liaogc * */ public class PDMTableColumn { private String fieldName;//���� private boolean isPrimaryKey;//�Ƿ����� private boolean isNullable;//�Ƿ���ΪNULL private String defaultValue;//Ĭ��ֵ private String comment;//��˵�� /** * @return the comment */ public String getComment() { return comment; } /** * @param comment the comment to set */ public void setComment(String comment) { this.comment = comment; } /** * @return the fieldName */ public String getFieldName() { return fieldName; } /** * @param fieldName the fieldName to set */ public void setFieldName(String fieldName) { this.fieldName = fieldName; } /** * @return the isPrimaryKey */ public boolean isPrimaryKey() { return isPrimaryKey; } /** * @param isPrimaryKey the isPrimaryKey to set */ public void setPrimaryKey(boolean isPrimaryKey) { this.isPrimaryKey = isPrimaryKey; } /** * @return the isNullable */ public boolean isNullable() { return isNullable; } /** * @param isNullable the isNullable to set */ public void setNullable(boolean isNullable) { this.isNullable = isNullable; } /** * @return the defaultValue */ public String getDefaultValue() { return defaultValue; } /** * @param defaultValue the defaultValue to set */ public void setDefaultValue(String defaultValue) { this.defaultValue = defaultValue; } }