首页>代码>java web学生信息管理系统 >/StudentManagerWeb/src/com/ischoolbar/programmer/dao/AttendanceDao.java
package com.ischoolbar.programmer.dao;

import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;

import com.ischoolbar.programmer.model.Attendance;
import com.ischoolbar.programmer.model.Page;
import com.ischoolbar.programmer.model.SelectedCourse;
import com.ischoolbar.programmer.util.StringUtil;

/**
 * 考勤信息数据库操作
 * @author llq
 *
 */
public class AttendanceDao extends BaseDao {
	/**
	 * 添加考勤信息
	 * @param attendance
	 * @return
	 */
	public boolean addAttendance(Attendance attendance){
		String sql = "insert into s_attendance values(null,"+attendance.getCourseId()+","+attendance.getStudentId()+",'"+attendance.getType()+"','"+attendance.getDate()+"')";
		return update(sql);
	}
	
	/**
	 * 判断当前是否已签到
	 * @param studentId
	 * @param courseId
	 * @param type
	 * @return
	 */
	public boolean isAttendanced(int studentId,int courseId,String type,String date){
		boolean ret = false;
		String sql = "select * from s_attendance where student_id = " + studentId + " and course_id = " + courseId + " and type = '" + type + "' and date = '" + date + "'";
		ResultSet query = query(sql);
		try {
			if(query.next()){
				return true;
			}
		} catch (SQLException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return ret;
	}
	
	/**
	 * 获取指定的考勤信息列表
	 * @param attendace
	 * @param page
	 * @return
	 */
	public List<Attendance> getSelectedCourseList(Attendance attendace,Page page){
		List<Attendance> ret = new ArrayList<Attendance>();
		String sql = "select * from s_attendance ";
		if(attendace.getStudentId() != 0){
			sql += " and student_id = " + attendace.getStudentId();
		}
		if(attendace.getCourseId() != 0){
			sql += " and course_id = " + attendace.getCourseId();
		}
		if(!StringUtil.isEmpty(attendace.getType())){
			sql += " and type = '" + attendace.getType() + "'";
		}
		if(!StringUtil.isEmpty(attendace.getDate())){
			sql += " and date = '" + attendace.getDate() + "'";
		}
		sql += " limit " + page.getStart() + "," + page.getPageSize();
		sql = sql.replaceFirst("and", "where");
		ResultSet resultSet = query(sql);
		try {
			while(resultSet.next()){
				Attendance a = new Attendance();
				a.setId(resultSet.getInt("id"));
				a.setCourseId(resultSet.getInt("course_id"));
				a.setStudentId(resultSet.getInt("student_id"));
				a.setType(resultSet.getString("type"));
				a.setDate(resultSet.getString("date"));
				ret.add(a);
			}
		} catch (SQLException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return ret;
	}
	
	/**
	 * 获取符合条件记录总数
	 * @param attendance
	 * @return
	 */
	public int getAttendanceListTotal(Attendance attendance){
		int total = 0;
		String sql = "select count(*)as total from s_attendance ";
		if(attendance.getStudentId() != 0){
			sql += " and student_id = " + attendance.getStudentId();
		}
		if(attendance.getCourseId() != 0){
			sql += " and course_id = " + attendance.getCourseId();
		}
		ResultSet resultSet = query(sql.replaceFirst("and", "where"));
		try {
			while(resultSet.next()){
				total = resultSet.getInt("total");
			}
		} catch (SQLException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return total;
	}
	
	/**
	 * 删除
	 * @param id
	 * @return
	 */
	public boolean deleteAttendance(int id){
		String sql = "delete from s_attendance where id = " + id;
		return update(sql);
	}
}
最近下载更多
李清清  LV2 11月6日
lxm2440226414  LV2 6月10日
云着殇  LV9 6月5日
lzx602  LV3 4月15日
zhangjilu  LV18 1月1日
磊哥哥哥哥  LV13 2023年12月26日
heweimin  LV13 2023年12月12日
hapilong  LV6 2023年12月11日
蹇金金  LV7 2023年10月31日
最近浏览更多
李清清  LV2 11月6日
送你一张  LV1 10月28日
krispeng  LV13 9月10日
nurxshat_outl 7月3日
暂无贡献等级
柳咪华沙  LV7 6月28日
岳铭鑫 6月26日
暂无贡献等级
liyan54188  LV2 6月25日
zzk3085000785 6月20日
暂无贡献等级
15719908287  LV9 6月19日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友