Package com.wgc.beans

Examples of com.wgc.beans.Student


        this.getHibernateTemplate().delete(stu);
    }
   
    public Student findById(java.lang.String id) {

            Student stu = (Student)this.getHibernateTemplate().get("com.wgc.beans.Student", id);
            return stu;

    }
View Full Code Here


   
  }
  //����ѧ�Ų�ѯ
  public List<Appoint> findByXhYysj(String xh,String xm,String yysj){
     
    Student stu = this.stuService.findByStuID(xh);
    if(!stu.getXm().trim().equals(xm)){
      return null;
    }else{
      try{
        yysj = yysj+" 00:00:00";
        Timestamp time = Timestamp.valueOf(yysj);
View Full Code Here

TOP

Related Classes of com.wgc.beans.Student

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.