AssetFieldsManager.java
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:3k
源码类别:

OA系统

开发平台:

Java

  1. package com.gforce.gfoa;
  2. import com.gforce.currency.database.*;
  3. import java.util.*;
  4. import com.gforce.currency.*;
  5. /**
  6.  *
  7.  * <p>Title: 吉力科技办公自动化系统</p>
  8.  * <p>Description: 吉力科技办公自动化系统</p>
  9.  * <p>Copyright: 版权所有 2003 (c) 西安吉力科技发展有限公司  Copyright (c) 2003 GForce Sceince & Technology</p>
  10.  * <p>Company: 西安吉力科技发展有限公司 (GForce Sceince & Technology)</p>
  11.  * @author 王江涛
  12.  * @version 1.0
  13.  */
  14. public class AssetFieldsManager
  15.     extends RecordManager {
  16.     public AssetFieldsManager() {
  17.     }
  18.     protected final static String TableName = "AssetFieldsName"; //定义声明本类操作表名称
  19.     protected final static String IDFieldName = "ID"; //定义声明主键或者可以确定唯一记录的字段名称为“ID”,必须为自增整型
  20.     protected final static String[] NumericFieldsName = {"OrderBy","AssetTypeID"}; //声明数值型字段名称
  21.     protected final static String[] StringFieldsName = {"FieldsName","FieldType"}; //声明字符型字段名称
  22.     protected final static String[] DatetimeFieldsName = {}; //声明日期时间型字段名称
  23.     protected final static String[] TextFieldsName =     {}; //声明大字符串型字段名称
  24.     /**
  25.      * 根据字段名称获取插入数据时表单元素名称
  26.      * @param strFieldName  字段名称
  27.      * @return  表单素名称
  28.      */
  29.     protected String InsertParament(String strFieldName) {
  30.         return "" + strFieldName + ""; //可以根据需要加前缀、后缀
  31.     }
  32.     /**
  33.      * 根据字段名称获取修改数据时表单元素名称
  34.      * @param strFieldName  字段名称
  35.      * @return  表单素名称
  36.      */
  37.     protected String UpdateParament(String strFieldName) {
  38.         return "" + strFieldName + ""; //可以根据需要加前缀、后缀
  39.     }
  40.     /**
  41.      * 获取本类操作表名称
  42.      * @return  表名称
  43.      */
  44.     public String getTableName() { //获取本类操作表名称
  45.         return TableName;
  46.     }
  47.     protected String getIDFieldName() { //获取主键或者可以确定唯一记录的字段名称
  48.         return IDFieldName;
  49.     }
  50.     protected String[] getNumericFieldsName() { //获取数值型字段名称
  51.         return NumericFieldsName;
  52.     }
  53.     protected String[] getStringFieldsName() { //获取字符型字段名称
  54.         return StringFieldsName;
  55.     }
  56.     protected String[] getDatetimeFieldsName() { //获取日期时间型字段名称
  57.         return DatetimeFieldsName;
  58.     }
  59.     protected String[] getTextFieldsName() { //获取大字符串型字段名称
  60.         return TextFieldsName;
  61.     }
  62.     /**
  63.      * 获取所有字段记录集
  64.      * @return 所有字段记录集
  65.      */
  66.     public static Vector getAllRecord()
  67.     {
  68.         Vector vt = SQLManager.GetResultSet("Select * from " + TableName);
  69.         return vt;
  70.     }
  71.     /**
  72.      * 获取资产类型所有字段记录集
  73.      * @return 资产类型所有字段记录集
  74.      */
  75.     public static Vector getByAssetTypeRecord(int iAssetTypeID)
  76.     {
  77.         Vector vt = SQLManager.GetResultSet("Select * from " + TableName + " WHERE AssetTypeID ='" + iAssetTypeID + "' Order By OrderBy");
  78.         return vt;
  79.     }
  80.     /**
  81.      * 获取指定ID的字段名称
  82.      * @param iFieldsID  字段ID
  83.      * @return  字段名称
  84.      */
  85.     public static String getFieldNameByID(int iFieldsID)
  86.     {
  87.         String strReturnValue="未知名称";
  88.         Vector vt = SQLManager.GetResultSet("Select FieldsName from " + TableName + " where ID=" + iFieldsID);
  89.         if(vt.size()==1)
  90.         {
  91.             strReturnValue = ((Vector)vt.get(0)).get(0).toString();
  92.         }
  93.         return strReturnValue;
  94.     }
  95. }