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

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 AssetFieldsValueManager
  15.     extends RecordManager {
  16.     public AssetFieldsValueManager() {
  17.     }
  18.     protected final static String TableName = "AssetFieldsValue"; //定义声明本类操作表名称
  19.     protected final static String IDFieldName = "ID"; //定义声明主键或者可以确定唯一记录的字段名称为“ID”,必须为自增整型
  20.     protected final static String[] NumericFieldsName = {"AssetID","FieldID"}; //声明数值型字段名称
  21.     protected final static String[] StringFieldsName = {}; //声明字符型字段名称
  22.     protected final static String[] DatetimeFieldsName = {}; //声明日期时间型字段名称
  23.     protected final static String[] TextFieldsName = {"FieldValue"}; //声明大字符串型字段名称
  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.      * 获取指定ID的字段地内容
  73.      * @param iFieldsID  字段ID
  74.      * @return  字段内容
  75.      */
  76.     public static String getFieldValueByID(int iAssetID,int iFieldsID)
  77.     {
  78.         String strReturnValue="";
  79.         Vector vt = SQLManager.GetResultSet("Select FieldValue from " + TableName + " where (AssetID = " + iAssetID +") AND (FieldID = "+iFieldsID+")");
  80.         if(vt.size()==1)
  81.         {
  82.             strReturnValue = ((Vector)vt.get(0)).get(0).toString();
  83.         }
  84.         return strReturnValue;
  85.     }
  86.     /**
  87.      * 获取指定文档ID字段ID的ID
  88.      * @param iFieldsID  字段ID
  89.      * @param iDocID  文档ID
  90.      * @return  ID
  91.      */
  92.     public static int getFieldIDByID(int iAssetID, int iFieldsID)
  93.     {
  94.         int strReturnValue = 0;
  95.         Vector vt = SQLManager.GetResultSet("Select ID from " + TableName + " where (AssetID = " + iAssetID +
  96.                                             ") AND (FieldID = " + iFieldsID + ")");
  97.         if (vt.size() == 1)
  98.         {
  99.             strReturnValue = Integer.parseInt(((Vector) vt.get(0)).get(0).toString());
  100.         }
  101.         return strReturnValue;
  102.     }
  103. }