DocumentTypeManager.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 DocumentTypeManager
  15.     extends RecordManager {
  16.     public DocumentTypeManager() {
  17.     }
  18.     protected final static String TableName = "DocumentTypeInfo"; //定义声明本类操作表名称
  19.     protected final static String IDFieldName = "ID"; //定义声明主键或者可以确定唯一记录的字段名称为“ID”,必须为自增整型
  20.     protected final static String[] NumericFieldsName = {"SysDirID"}; //声明数值型字段名称
  21.     protected final static String[] StringFieldsName = {"TypeName"}; //声明字符型字段名称
  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.      *  @param iSysDirID  文档类型ID
  75.          */
  76.         public static Vector getBySysDirIDRecord(int iSysDirID)
  77.         {
  78.             Vector vt = SQLManager.GetResultSet("Select * from " + TableName + " WHERE SysDirID ="+iSysDirID);
  79.             return vt;
  80.         }
  81.     /**
  82.      * 获取指定ID的文档类型名称
  83.      * @param iTypeID  文档类型ID
  84.      * @return  文档类型名称
  85.      */
  86.     public static String getDocTypeNameByID(int iTypeID)
  87.     {
  88.         String strReturnValue="未知名称";
  89.         Vector vt = SQLManager.GetResultSet("Select TypeName from " + TableName + " where ID=" + iTypeID);
  90.         if(vt.size()==1)
  91.         {
  92.             strReturnValue = ((Vector)vt.get(0)).get(0).toString();
  93.         }
  94.         return strReturnValue;
  95.     }
  96. }