SubjectService.java
上传用户:ouhalaa
上传日期:2016-03-17
资源大小:10210k
文件大小:1k
源码类别:

Web服务器

开发平台:

Java

  1. package com.lhq.prj.bms.service.impl;
  2. import java.util.List;
  3. import com.lhq.prj.bms.dao.ISubjectDao;
  4. import com.lhq.prj.bms.po.Subject;
  5. import com.lhq.prj.bms.service.ISubjectService;
  6. /**
  7.  * SubjectService.java Create on 2008-9-21 下午03:59:22
  8.  * 
  9.  * 科目管理业务实现
  10.  * 
  11.  * Copyright (c) 2008 by MTA.
  12.  * 
  13.  * @author 廖瀚卿
  14.  * @version 1.0
  15.  */
  16. public class SubjectService implements ISubjectService {
  17. private ISubjectDao subjectDao;
  18. public void setSubjectDao(ISubjectDao subjectDao) {
  19. this.subjectDao = subjectDao;
  20. }
  21. public boolean deleteSubject(Integer subjectId) {
  22. Integer flag = subjectDao.deleteById(subjectId);
  23. if (null != flag) {
  24. return true;
  25. }
  26. return false;
  27. }
  28. public List findAll() {
  29. return subjectDao.findAll();
  30. }
  31. public Object saveSubject(Subject subject) {
  32. return subjectDao.saveSubject(subject);
  33. }
  34. public boolean updateSubject(Subject subject) throws Exception {
  35. Integer flag = subjectDao.update(subject);
  36. if (null != flag) {
  37. return true;
  38. }
  39. return false;
  40. }
  41. }