📄 jmdboinkeyvalue.java.svn-base
字号:
package jm.dbo;
import jm.util.JM2DArray;
public class JMDBOInKeyValue {
public static final String ITEM_BLANK = JMDBOCommandKeys.ITEM_BLANK;
public static final String ITEM_IS_NULL = JMDBOCommandKeys.ITEM_IS_NULL;
public static final String ITEM_IS_NOT_NULL = JMDBOCommandKeys.ITEM_IS_NOT_NULL;
public static final String ITEM_IS_PASS = JMDBOCommandKeys.ITEM_IS_PASS;
public static final String ITEM_REMOVE = JMDBOCommandKeys.ITEM_REMOVE;
////////////////////////////////////////////////////////////
// public static final String DB_ALL_PAGE = CommandKeys.DB_ALL_PAGE;
public static final String SVC_SELECT = JMDBOCommandKeys.SVC_SELECT;
public static final String SVC_INSERT = JMDBOCommandKeys.SVC_INSERT;
public static final String SVC_UPDATE = JMDBOCommandKeys.SVC_UPDATE;
public static final String SVC_DELETE = JMDBOCommandKeys.SVC_DELETE;
// public static final String SVC_PIC_SEL = CommandKeys.SVC_PIC_SEL;
// public static final String SVC_PIC_CON = CommandKeys.SVC_PIC_CON;
// public static final String SVC_TABLE_SELECT = CommandKeys.SVC_TABLE_SELECT;
////////////////////////////////////////////////////////////
// 儕僜乕僗僼傽僀儖
private JM2DArray oWhereParam = null;
// 儕僜乕僗僼傽僀儖
private JM2DArray oUpParameter = null;
// SQL ID
private String oSQLID = null;
private String oDBName = null;
private String oDBType = null;
private boolean sQLFree = false;
public boolean isSQLFree () {
return sQLFree;
}
public void setSQLFree (boolean free) {
sQLFree = free;
}
public String getDBName () {
return oDBName;
}
public void setDBName (String iDBName) {
oDBName = iDBName;
}
public String getDBType () {
return oDBType;
}
public void setDBType (String iDBType) {
oDBType = iDBType;
}
public String getSQLID () {
return oSQLID;
}
public void setSQLID (String iSqlID) {
oSQLID = iSqlID;
}
public void setWhereParameter (JM2DArray iParam) {
oWhereParam = iParam;
}
public JM2DArray getWhereParameter () {
return oWhereParam;
}
public JM2DArray getUpParameter () {
return oUpParameter;
}
public void setUpParameter (JM2DArray iData) {
oUpParameter = iData;
}
/** 嬈柋庬椶 */
private String strType = null;
private boolean useEntity = false;
private String entityName;
/**
* 嬈柋庬椶偺庢摼
*
* @return strType 嬈柋庬椶
*/
public String getStrType() {
return strType;
}
public boolean isUseEntity () {
return useEntity;
}
public String getEntityName () {
return entityName;
}
/**
* 嬈柋庬椶偺僙僢僩
*
* @param strType
* 嬈柋庬椶
*/
public void setStrType(String string) {
strType = string;
}
public void setUseEntity (boolean useEntity) {
this.useEntity = useEntity;
}
public void setEntityName (String entityName) {
this.entityName = entityName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -