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

OA系统

开发平台:

Java

  1. package com.gforce.gfoa;
  2. import com.gforce.currency.*;
  3. import com.gforce.currency.database.*;
  4. import java.sql.*;
  5. import java.util.*;
  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 VoteManager
  15.     extends RecordManager
  16. {
  17.     public VoteManager()
  18.     {
  19.     }
  20.     protected final static String TableName = "VoteInfo"; //定义声明本类操作表名称为
  21.     protected final static String IDFieldName = "ID"; //定义声明主键或者可以确定唯一记录的字段名称为“ID”,必须为自增整型
  22.     protected final static String[] NumericFieldsName =
  23.         {"IsRadio", "SysDirID", "VoteTimes", "PublishUserID"}; //声明数值型字段名称
  24.     protected final static String[] StringFieldsName =
  25.         {"VoteName"}; //声明字符型字段名称
  26.     protected final static String[] DatetimeFieldsName =
  27.         {"StartTime", "EndTime", "PublishTime"}; //声明日期时间型字段名称
  28.     protected final static String[] TextFieldsName =
  29.         {}; //声明大字符串型字段名称
  30.     /**
  31.      * 根据字段名称获取插入数据时表单元素名称
  32.      * @param strFieldName  字段名称
  33.      * @return  表单素名称
  34.      */
  35.     protected String InsertParament(String strFieldName)
  36.     {
  37.         return "" + strFieldName + ""; //可以根据需要加前缀、后缀
  38.     }
  39.     /**
  40.      * 根据字段名称获取修改数据时表单元素名称
  41.      * @param strFieldName  字段名称
  42.      * @return  表单素名称
  43.      */
  44.     protected String UpdateParament(String strFieldName)
  45.     {
  46.         return "" + strFieldName + ""; //可以根据需要加前缀、后缀
  47.     }
  48.     /**
  49.      * 获取本类操作表名称
  50.      * @return  表名称
  51.      */
  52.     public String getTableName()
  53.     { //获取本类操作表名称
  54.         return TableName;
  55.     }
  56.     protected String getIDFieldName()
  57.     { //获取主键或者可以确定唯一记录的字段名称
  58.         return IDFieldName;
  59.     }
  60.     protected String[] getNumericFieldsName()
  61.     { //获取数值型字段名称
  62.         return NumericFieldsName;
  63.     }
  64.     protected String[] getStringFieldsName()
  65.     { //获取字符型字段名称
  66.         return StringFieldsName;
  67.     }
  68.     protected String[] getDatetimeFieldsName()
  69.     { //获取日期时间型字段名称
  70.         return DatetimeFieldsName;
  71.     }
  72.     protected String[] getTextFieldsName()
  73.     { //获取大字符串型字段名称
  74.         return TextFieldsName;
  75.     }
  76.     /**
  77.      * 获取所有记录的向量集
  78.      * @return 所有记录的向量集
  79.      */
  80.     public static Vector getAllRecord(int intSysDirID)
  81.     {
  82.         Vector vc = new Vector();
  83.         String strSQL = ""; //如果没有系统ID默认返回所有记录的向量集。
  84.         if (intSysDirID == 0)
  85.         {
  86.             strSQL = ("select * from " + TableName);
  87.         }
  88.         else
  89.         {
  90.             strSQL = ("select a.*,c.Name from " + TableName + " as a left outer join UserInfo as b on (a.PublishUserID = b.ID) left outer join PersonnelInfo as c on (b.PersonnelID=c.ID) where a.SysDirID = " +
  91.                       intSysDirID + " order by a.PublishTime desc,a.ID desc");
  92.         }
  93.         vc = SQLManager.GetResultSet(strSQL);
  94.         return vc;
  95.     }
  96.     /**
  97.      * 获取指定ID的数据集
  98.      * @param ID 要检索的ID
  99.      * @return 指定ID的数据集
  100.      */
  101.     public static Vector getRecordByID(int intID)
  102.     {
  103.         Vector vc = new Vector();
  104.         vc = SQLManager.GetResultSet("select * from " + TableName + " WHERE ID = " + intID);
  105.         return vc;
  106.     }
  107.     /**
  108.      * 获取属于指定系统目录下的现时间段有效的记录向量集
  109.      * @param iSysDirID  系统目录ID
  110.      * @return  指定系统目录下的现时间段有效的记录向量集
  111.      */
  112.     public static Vector getUsefullRecordBySysDirID(int iSysDirID)
  113.     {
  114.         java.util.Date dateCurrentTime = new java.util.Date();
  115.         String strCurrentDate = StringNew.GetDateString(dateCurrentTime,"yyyy-MM-dd");
  116.         Vector vt = SQLManager.GetResultSet("SELECT * FROM " + TableName + " WHERE (SysDirID=" + iSysDirID +
  117.             " or SysDirID in (Select ID from SystemDirectory where Station like ((select Station from SystemDirectory where ID = " +
  118.             iSysDirID + ")+'" + iSysDirID + "_%'))) and ((StartTime is null or StartTime<='" + strCurrentDate + "') and (EndTime is null or EndTime>='" + strCurrentDate+ "')) order by PublishTime desc,ID desc");
  119.         return vt;
  120.     }
  121.     /**
  122.      * 获取属于指定系统目录下的记录向量集
  123.      * @param iSysDirID  系统目录ID
  124.      * @return  指定系统目录下的记录向量集
  125.      */
  126.     public static Vector getRecordBySysDirID(int iSysDirID)
  127.     {
  128.         Vector vt = SQLManager.GetResultSet("SELECT a.*,c.name FROM " + TableName + " as a left outer join UserInfo as b on (a.PublishUserID = b.ID) left outer join PersonnelInfo as c on (b.PersonnelID=c.ID) WHERE a.SysDirID=" + iSysDirID +
  129.             " order by a.PublishTime desc,a.ID desc");
  130.         return vt;
  131.     }
  132.     /**
  133.      * 将指定记录的浏览次数加1
  134.      * @param intID  记录ID
  135.      */
  136.     public static void UpdateReocordView(int iID,String sValueIDs)
  137.     {
  138.         if(sValueIDs.length()>0)
  139.         {
  140.             SQLManager.ExcuteSQL("Update " + TableName + " set VoteTimes=(VoteTimes+1) where ID = " + iID);
  141.             SQLManager.ExcuteSQL("Update VoteOptionsInfo set Times=(Times+1) where ID in (" + sValueIDs + ")");
  142.         }
  143.     }
  144. }