AssetInOutManager.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 AssetInOutManager
  15.     extends RecordManager {
  16.     public AssetInOutManager() {
  17.     }
  18.     protected final static String TableName = "AssetInOutInfo"; //定义声明本类操作表名称
  19.     protected final static String IDFieldName = "ID"; //定义声明主键或者可以确定唯一记录的字段名称为“ID”,必须为自增整型
  20.     protected final static String[] NumericFieldsName = {"OperateUserID","AssetID","Amount"}; //声明数值型字段名称
  21.     protected final static String[] StringFieldsName = {"Operation"}; //声明字符型字段名称
  22.     protected final static String[] DatetimeFieldsName = {"StartTime","EndTime","OperateTime"}; //声明日期时间型字段名称
  23.     protected final static String[] TextFieldsName =     {"Remark"}; //声明大字符串型字段名称
  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+" Order By ID desc");
  69.         return vt;
  70.     }
  71.     /**
  72.      * 获取操作类型所有字段记录集
  73.      * @param iSysDirID 系统目录ID
  74.      * @param Operation 操作类型
  75.      * @return 操作类型所有字段记录集
  76.      */
  77.     public static Vector getByOperationRecord(int iSysDirID, String Operation)
  78.     {
  79.         Vector vt = SQLManager.GetResultSet("Select a.* from " + TableName + " as a left outer join AssetInfo as b on(a.AssetID=b.ID) left outer join AssetTypeInfo as c on (c.ID=b.AssetTypeID) WHERE (a.Operation ='" + Operation + "') And (c.SysDirID=" + iSysDirID + " or c.SysDirID is null) Order By a.ID desc ");
  80.         return vt;
  81.     }
  82.     /**
  83.      * 获取指定记录ID的数据向量集
  84.      * @param intRecordID 指定记录ID
  85.      * @return 数据向量集
  86.      */
  87.     public static Vector getRecordByID(int intRecordID)
  88.     {
  89.         Vector vt = SQLManager.GetResultSet("SELECT * FROM "+ TableName +" WHERE ID = " + intRecordID);
  90.         return vt;
  91.     }
  92. }