SYMBOL INDEX (1124 symbols across 67 files) FILE: sql/examination_system.sql type `college` (line 22) | CREATE TABLE `college` ( type `course` (line 39) | CREATE TABLE `course` ( type `role` (line 70) | CREATE TABLE `role` ( type `selectedcourse` (line 88) | CREATE TABLE `selectedcourse` ( type `student` (line 113) | CREATE TABLE `student` ( type `teacher` (line 139) | CREATE TABLE `teacher` ( type `userlogin` (line 164) | CREATE TABLE `userlogin` ( FILE: src/main/java/com/system/controller/AdminController.java class AdminController (line 20) | @Controller method showStudent (line 42) | @RequestMapping("/showStudent") method addStudentUI (line 66) | @RequestMapping(value = "/addStudent", method = {RequestMethod.GET}) method addStudent (line 77) | @RequestMapping(value = "/addStudent", method = {RequestMethod.POST}) method editStudentUI (line 98) | @RequestMapping(value = "/editStudent", method = {RequestMethod.GET}) method editStudent (line 118) | @RequestMapping(value = "/editStudent", method = {RequestMethod.POST}) method removeStudent (line 128) | @RequestMapping(value = "/removeStudent", method = {RequestMethod.GET} ) method selectStudent (line 141) | @RequestMapping(value = "selectStudent", method = {RequestMethod.POST}) method showTeacher (line 153) | @RequestMapping("/showTeacher") method addTeacherUI (line 177) | @RequestMapping(value = "/addTeacher", method = {RequestMethod.GET}) method addTeacher (line 188) | @RequestMapping(value = "/addTeacher", method = {RequestMethod.POST}) method editTeacherUI (line 209) | @RequestMapping(value = "/editTeacher", method = {RequestMethod.GET}) method editTeacher (line 228) | @RequestMapping(value = "/editTeacher", method = {RequestMethod.POST}) method removeTeacher (line 238) | @RequestMapping("/removeTeacher") method selectTeacher (line 251) | @RequestMapping(value = "selectTeacher", method = {RequestMethod.POST}) method showCourse (line 263) | @RequestMapping("/showCourse") method addCourseUI (line 287) | @RequestMapping(value = "/addCourse", method = {RequestMethod.GET}) method addCourse (line 300) | @RequestMapping(value = "/addCourse", method = {RequestMethod.POST}) method editCourseUI (line 316) | @RequestMapping(value = "/editCourse", method = {RequestMethod.GET}) method editCourse (line 337) | @RequestMapping(value = "/editCourse", method = {RequestMethod.POST}) method removeCourse (line 347) | @RequestMapping("/removeCourse") method selectCourse (line 359) | @RequestMapping(value = "selectCourse", method = {RequestMethod.POST}) method userPasswordRestUI (line 371) | @RequestMapping("/userPasswordRest") method userPasswordRest (line 377) | @RequestMapping(value = "/userPasswordRest", method = {RequestMethod.P... method passwordRestUI (line 396) | @RequestMapping("/passwordRest") FILE: src/main/java/com/system/controller/LoginController.java class LoginController (line 14) | @Controller method loginUI (line 18) | @RequestMapping(value = "/login", method = {RequestMethod.GET}) method login (line 24) | @RequestMapping(value = "/login", method = {RequestMethod.POST}) FILE: src/main/java/com/system/controller/RestPasswordController.java class RestPasswordController (line 17) | @Controller method passwordRest (line 24) | @RequestMapping(value = "/passwordRest", method = {RequestMethod.POST}) FILE: src/main/java/com/system/controller/StudentController.java class StudentController (line 20) | @Controller method stuCourseShow (line 33) | @RequestMapping(value = "/showCourse") method stuSelectedCourse (line 56) | @RequestMapping(value = "/stuSelectedCourse") method outCourse (line 78) | @RequestMapping(value = "/outCourse") method selectedCourse (line 93) | @RequestMapping(value = "/selectedCourse") method overCourse (line 107) | @RequestMapping(value = "/overCourse") method passwordRest (line 122) | @RequestMapping(value = "/passwordRest") FILE: src/main/java/com/system/controller/TeacherController.java class TeacherController (line 23) | @Controller method stuCourseShow (line 37) | @RequestMapping(value = "/showCourse") method gradeCourse (line 50) | @RequestMapping(value = "/gradeCourse") method markUI (line 61) | @RequestMapping(value = "/mark", method = {RequestMethod.GET}) method mark (line 72) | @RequestMapping(value = "/mark", method = {RequestMethod.POST}) method passwordRest (line 81) | @RequestMapping(value = "/passwordRest") FILE: src/main/java/com/system/controller/converter/CustomDateConverter.java class CustomDateConverter (line 12) | public class CustomDateConverter implements Converter { method convert (line 15) | public Date convert(String s) { FILE: src/main/java/com/system/exception/CustomException.java class CustomException (line 6) | public class CustomException extends Exception { method CustomException (line 11) | public CustomException(String message) { method getMessage (line 16) | public String getMessage() { method setMessage (line 20) | public void setMessage(String message) { FILE: src/main/java/com/system/exception/CustomExceptionResolver.java class CustomExceptionResolver (line 19) | public class CustomExceptionResolver implements HandlerExceptionResolver { method resolveException (line 21) | public ModelAndView resolveException(HttpServletRequest httpServletReq... FILE: src/main/java/com/system/mapper/CollegeMapper.java type CollegeMapper (line 9) | public interface CollegeMapper { method countByExample (line 10) | int countByExample(CollegeExample example); method deleteByExample (line 12) | int deleteByExample(CollegeExample example); method deleteByPrimaryKey (line 14) | int deleteByPrimaryKey(Integer collegeid); method insert (line 16) | int insert(College record); method insertSelective (line 18) | int insertSelective(College record); method selectByExample (line 20) | List selectByExample(CollegeExample example); method selectByPrimaryKey (line 22) | College selectByPrimaryKey(Integer collegeid); method updateByExampleSelective (line 24) | int updateByExampleSelective(@Param("record") College record, @Param("... method updateByExample (line 26) | int updateByExample(@Param("record") College record, @Param("example")... method updateByPrimaryKeySelective (line 28) | int updateByPrimaryKeySelective(College record); method updateByPrimaryKey (line 30) | int updateByPrimaryKey(College record); FILE: src/main/java/com/system/mapper/CourseMapper.java type CourseMapper (line 9) | public interface CourseMapper { method countByExample (line 10) | int countByExample(CourseExample example); method deleteByExample (line 12) | int deleteByExample(CourseExample example); method deleteByPrimaryKey (line 14) | int deleteByPrimaryKey(Integer courseid); method insert (line 16) | int insert(Course record); method insertSelective (line 18) | int insertSelective(Course record); method selectByExample (line 20) | List selectByExample(CourseExample example); method selectByPrimaryKey (line 22) | Course selectByPrimaryKey(Integer courseid); method updateByExampleSelective (line 24) | int updateByExampleSelective(@Param("record") Course record, @Param("e... method updateByExample (line 26) | int updateByExample(@Param("record") Course record, @Param("example") ... method updateByPrimaryKeySelective (line 28) | int updateByPrimaryKeySelective(Course record); method updateByPrimaryKey (line 30) | int updateByPrimaryKey(Course record); FILE: src/main/java/com/system/mapper/CourseMapperCustom.java type CourseMapperCustom (line 11) | public interface CourseMapperCustom { method findByPaging (line 14) | List findByPaging(PagingVO pagingVO) throws Exception; FILE: src/main/java/com/system/mapper/RoleMapper.java type RoleMapper (line 9) | public interface RoleMapper { method countByExample (line 10) | int countByExample(RoleExample example); method deleteByExample (line 12) | int deleteByExample(RoleExample example); method deleteByPrimaryKey (line 14) | int deleteByPrimaryKey(Integer roleid); method insert (line 16) | int insert(Role record); method insertSelective (line 18) | int insertSelective(Role record); method selectByExample (line 20) | List selectByExample(RoleExample example); method selectByPrimaryKey (line 22) | Role selectByPrimaryKey(Integer roleid); method updateByExampleSelective (line 24) | int updateByExampleSelective(@Param("record") Role record, @Param("exa... method updateByExample (line 26) | int updateByExample(@Param("record") Role record, @Param("example") Ro... method updateByPrimaryKeySelective (line 28) | int updateByPrimaryKeySelective(Role record); method updateByPrimaryKey (line 30) | int updateByPrimaryKey(Role record); FILE: src/main/java/com/system/mapper/SelectedcourseMapper.java type SelectedcourseMapper (line 9) | public interface SelectedcourseMapper { method countByExample (line 10) | int countByExample(SelectedcourseExample example); method deleteByExample (line 12) | int deleteByExample(SelectedcourseExample example); method insert (line 14) | int insert(Selectedcourse record); method insertSelective (line 16) | int insertSelective(Selectedcourse record); method selectByExample (line 18) | List selectByExample(SelectedcourseExample example); method updateByExampleSelective (line 20) | int updateByExampleSelective(@Param("record") Selectedcourse record, @... method updateByExample (line 22) | int updateByExample(@Param("record") Selectedcourse record, @Param("ex... FILE: src/main/java/com/system/mapper/StudentMapper.java type StudentMapper (line 9) | public interface StudentMapper { method countByExample (line 10) | int countByExample(StudentExample example); method deleteByExample (line 12) | int deleteByExample(StudentExample example); method deleteByPrimaryKey (line 14) | int deleteByPrimaryKey(Integer userid); method insert (line 16) | int insert(Student record); method insertSelective (line 18) | int insertSelective(Student record); method selectByExample (line 20) | List selectByExample(StudentExample example); method selectByPrimaryKey (line 22) | Student selectByPrimaryKey(Integer userid); method updateByExampleSelective (line 24) | int updateByExampleSelective(@Param("record") Student record, @Param("... method updateByExample (line 26) | int updateByExample(@Param("record") Student record, @Param("example")... method updateByPrimaryKeySelective (line 28) | int updateByPrimaryKeySelective(Student record); method updateByPrimaryKey (line 30) | int updateByPrimaryKey(Student record); FILE: src/main/java/com/system/mapper/StudentMapperCustom.java type StudentMapperCustom (line 11) | public interface StudentMapperCustom { method findByPaging (line 14) | List findByPaging(PagingVO pagingVO) throws Exception; method findStudentAndSelectCourseListById (line 17) | StudentCustom findStudentAndSelectCourseListById(Integer id) throws Ex... FILE: src/main/java/com/system/mapper/TeacherMapper.java type TeacherMapper (line 9) | public interface TeacherMapper { method countByExample (line 10) | int countByExample(TeacherExample example); method deleteByExample (line 12) | int deleteByExample(TeacherExample example); method deleteByPrimaryKey (line 14) | int deleteByPrimaryKey(Integer userid); method insert (line 16) | int insert(Teacher record); method insertSelective (line 18) | int insertSelective(Teacher record); method selectByExample (line 20) | List selectByExample(TeacherExample example); method selectByPrimaryKey (line 22) | Teacher selectByPrimaryKey(Integer userid); method updateByExampleSelective (line 24) | int updateByExampleSelective(@Param("record") Teacher record, @Param("... method updateByExample (line 26) | int updateByExample(@Param("record") Teacher record, @Param("example")... method updateByPrimaryKeySelective (line 28) | int updateByPrimaryKeySelective(Teacher record); method updateByPrimaryKey (line 30) | int updateByPrimaryKey(Teacher record); FILE: src/main/java/com/system/mapper/TeacherMapperCustom.java type TeacherMapperCustom (line 11) | public interface TeacherMapperCustom { method findByPaging (line 14) | List findByPaging(PagingVO pagingVO) throws Exception; FILE: src/main/java/com/system/mapper/UserloginMapper.java type UserloginMapper (line 9) | public interface UserloginMapper { method countByExample (line 10) | int countByExample(UserloginExample example); method deleteByExample (line 12) | int deleteByExample(UserloginExample example); method deleteByPrimaryKey (line 14) | int deleteByPrimaryKey(Integer userid); method insert (line 16) | int insert(Userlogin record); method insertSelective (line 18) | int insertSelective(Userlogin record); method selectByExample (line 20) | List selectByExample(UserloginExample example); method selectByPrimaryKey (line 22) | Userlogin selectByPrimaryKey(Integer userid); method updateByExampleSelective (line 24) | int updateByExampleSelective(@Param("record") Userlogin record, @Param... method updateByExample (line 26) | int updateByExample(@Param("record") Userlogin record, @Param("example... method updateByPrimaryKeySelective (line 28) | int updateByPrimaryKeySelective(Userlogin record); method updateByPrimaryKey (line 30) | int updateByPrimaryKey(Userlogin record); FILE: src/main/java/com/system/mapper/UserloginMapperCustom.java type UserloginMapperCustom (line 8) | public interface UserloginMapperCustom { method findOneByName (line 10) | UserloginCustom findOneByName(String name) throws Exception; FILE: src/main/java/com/system/po/College.java class College (line 3) | public class College { method getCollegeid (line 8) | public Integer getCollegeid() { method setCollegeid (line 12) | public void setCollegeid(Integer collegeid) { method getCollegename (line 16) | public String getCollegename() { method setCollegename (line 20) | public void setCollegename(String collegename) { FILE: src/main/java/com/system/po/CollegeCustom.java class CollegeCustom (line 6) | public class CollegeCustom extends College { FILE: src/main/java/com/system/po/CollegeExample.java class CollegeExample (line 6) | public class CollegeExample { method CollegeExample (line 13) | public CollegeExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andCollegeidIsNull (line 107) | public Criteria andCollegeidIsNull() { method andCollegeidIsNotNull (line 112) | public Criteria andCollegeidIsNotNull() { method andCollegeidEqualTo (line 117) | public Criteria andCollegeidEqualTo(Integer value) { method andCollegeidNotEqualTo (line 122) | public Criteria andCollegeidNotEqualTo(Integer value) { method andCollegeidGreaterThan (line 127) | public Criteria andCollegeidGreaterThan(Integer value) { method andCollegeidGreaterThanOrEqualTo (line 132) | public Criteria andCollegeidGreaterThanOrEqualTo(Integer value) { method andCollegeidLessThan (line 137) | public Criteria andCollegeidLessThan(Integer value) { method andCollegeidLessThanOrEqualTo (line 142) | public Criteria andCollegeidLessThanOrEqualTo(Integer value) { method andCollegeidIn (line 147) | public Criteria andCollegeidIn(List values) { method andCollegeidNotIn (line 152) | public Criteria andCollegeidNotIn(List values) { method andCollegeidBetween (line 157) | public Criteria andCollegeidBetween(Integer value1, Integer value2) { method andCollegeidNotBetween (line 162) | public Criteria andCollegeidNotBetween(Integer value1, Integer value... method andCollegenameIsNull (line 167) | public Criteria andCollegenameIsNull() { method andCollegenameIsNotNull (line 172) | public Criteria andCollegenameIsNotNull() { method andCollegenameEqualTo (line 177) | public Criteria andCollegenameEqualTo(String value) { method andCollegenameNotEqualTo (line 182) | public Criteria andCollegenameNotEqualTo(String value) { method andCollegenameGreaterThan (line 187) | public Criteria andCollegenameGreaterThan(String value) { method andCollegenameGreaterThanOrEqualTo (line 192) | public Criteria andCollegenameGreaterThanOrEqualTo(String value) { method andCollegenameLessThan (line 197) | public Criteria andCollegenameLessThan(String value) { method andCollegenameLessThanOrEqualTo (line 202) | public Criteria andCollegenameLessThanOrEqualTo(String value) { method andCollegenameLike (line 207) | public Criteria andCollegenameLike(String value) { method andCollegenameNotLike (line 212) | public Criteria andCollegenameNotLike(String value) { method andCollegenameIn (line 217) | public Criteria andCollegenameIn(List values) { method andCollegenameNotIn (line 222) | public Criteria andCollegenameNotIn(List values) { method andCollegenameBetween (line 227) | public Criteria andCollegenameBetween(String value1, String value2) { method andCollegenameNotBetween (line 232) | public Criteria andCollegenameNotBetween(String value1, String value... class Criteria (line 238) | public static class Criteria extends GeneratedCriteria { method Criteria (line 240) | protected Criteria() { class Criterion (line 245) | public static class Criterion { method getCondition (line 262) | public String getCondition() { method getValue (line 266) | public Object getValue() { method getSecondValue (line 270) | public Object getSecondValue() { method isNoValue (line 274) | public boolean isNoValue() { method isSingleValue (line 278) | public boolean isSingleValue() { method isBetweenValue (line 282) | public boolean isBetweenValue() { method isListValue (line 286) | public boolean isListValue() { method getTypeHandler (line 290) | public String getTypeHandler() { method Criterion (line 294) | protected Criterion(String condition) { method Criterion (line 301) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 313) | protected Criterion(String condition, Object value) { method Criterion (line 317) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 326) | protected Criterion(String condition, Object value, Object secondVal... FILE: src/main/java/com/system/po/Course.java class Course (line 3) | public class Course { method getCourseid (line 22) | public Integer getCourseid() { method setCourseid (line 26) | public void setCourseid(Integer courseid) { method getCoursename (line 30) | public String getCoursename() { method setCoursename (line 34) | public void setCoursename(String coursename) { method getTeacherid (line 38) | public Integer getTeacherid() { method setTeacherid (line 42) | public void setTeacherid(Integer teacherid) { method getCoursetime (line 46) | public String getCoursetime() { method setCoursetime (line 50) | public void setCoursetime(String coursetime) { method getClassroom (line 54) | public String getClassroom() { method setClassroom (line 58) | public void setClassroom(String classroom) { method getCourseweek (line 62) | public Integer getCourseweek() { method setCourseweek (line 66) | public void setCourseweek(Integer courseweek) { method getCoursetype (line 70) | public String getCoursetype() { method setCoursetype (line 74) | public void setCoursetype(String coursetype) { method getCollegeid (line 78) | public Integer getCollegeid() { method setCollegeid (line 82) | public void setCollegeid(Integer collegeid) { method getScore (line 86) | public Integer getScore() { method setScore (line 90) | public void setScore(Integer score) { FILE: src/main/java/com/system/po/CourseCustom.java class CourseCustom (line 6) | public class CourseCustom extends Course { method setcollegeName (line 11) | public void setcollegeName(String collegeName) { method getcollegeName (line 15) | public String getcollegeName() { FILE: src/main/java/com/system/po/CourseExample.java class CourseExample (line 6) | public class CourseExample { method CourseExample (line 13) | public CourseExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andCourseidIsNull (line 107) | public Criteria andCourseidIsNull() { method andCourseidIsNotNull (line 112) | public Criteria andCourseidIsNotNull() { method andCourseidEqualTo (line 117) | public Criteria andCourseidEqualTo(Integer value) { method andCourseidNotEqualTo (line 122) | public Criteria andCourseidNotEqualTo(Integer value) { method andCourseidGreaterThan (line 127) | public Criteria andCourseidGreaterThan(Integer value) { method andCourseidGreaterThanOrEqualTo (line 132) | public Criteria andCourseidGreaterThanOrEqualTo(Integer value) { method andCourseidLessThan (line 137) | public Criteria andCourseidLessThan(Integer value) { method andCourseidLessThanOrEqualTo (line 142) | public Criteria andCourseidLessThanOrEqualTo(Integer value) { method andCourseidIn (line 147) | public Criteria andCourseidIn(List values) { method andCourseidNotIn (line 152) | public Criteria andCourseidNotIn(List values) { method andCourseidBetween (line 157) | public Criteria andCourseidBetween(Integer value1, Integer value2) { method andCourseidNotBetween (line 162) | public Criteria andCourseidNotBetween(Integer value1, Integer value2) { method andCoursenameIsNull (line 167) | public Criteria andCoursenameIsNull() { method andCoursenameIsNotNull (line 172) | public Criteria andCoursenameIsNotNull() { method andCoursenameEqualTo (line 177) | public Criteria andCoursenameEqualTo(String value) { method andCoursenameNotEqualTo (line 182) | public Criteria andCoursenameNotEqualTo(String value) { method andCoursenameGreaterThan (line 187) | public Criteria andCoursenameGreaterThan(String value) { method andCoursenameGreaterThanOrEqualTo (line 192) | public Criteria andCoursenameGreaterThanOrEqualTo(String value) { method andCoursenameLessThan (line 197) | public Criteria andCoursenameLessThan(String value) { method andCoursenameLessThanOrEqualTo (line 202) | public Criteria andCoursenameLessThanOrEqualTo(String value) { method andCoursenameLike (line 207) | public Criteria andCoursenameLike(String value) { method andCoursenameNotLike (line 212) | public Criteria andCoursenameNotLike(String value) { method andCoursenameIn (line 217) | public Criteria andCoursenameIn(List values) { method andCoursenameNotIn (line 222) | public Criteria andCoursenameNotIn(List values) { method andCoursenameBetween (line 227) | public Criteria andCoursenameBetween(String value1, String value2) { method andCoursenameNotBetween (line 232) | public Criteria andCoursenameNotBetween(String value1, String value2) { method andTeacheridIsNull (line 237) | public Criteria andTeacheridIsNull() { method andTeacheridIsNotNull (line 242) | public Criteria andTeacheridIsNotNull() { method andTeacheridEqualTo (line 247) | public Criteria andTeacheridEqualTo(Integer value) { method andTeacheridNotEqualTo (line 252) | public Criteria andTeacheridNotEqualTo(Integer value) { method andTeacheridGreaterThan (line 257) | public Criteria andTeacheridGreaterThan(Integer value) { method andTeacheridGreaterThanOrEqualTo (line 262) | public Criteria andTeacheridGreaterThanOrEqualTo(Integer value) { method andTeacheridLessThan (line 267) | public Criteria andTeacheridLessThan(Integer value) { method andTeacheridLessThanOrEqualTo (line 272) | public Criteria andTeacheridLessThanOrEqualTo(Integer value) { method andTeacheridIn (line 277) | public Criteria andTeacheridIn(List values) { method andTeacheridNotIn (line 282) | public Criteria andTeacheridNotIn(List values) { method andTeacheridBetween (line 287) | public Criteria andTeacheridBetween(Integer value1, Integer value2) { method andTeacheridNotBetween (line 292) | public Criteria andTeacheridNotBetween(Integer value1, Integer value... method andCoursetimeIsNull (line 297) | public Criteria andCoursetimeIsNull() { method andCoursetimeIsNotNull (line 302) | public Criteria andCoursetimeIsNotNull() { method andCoursetimeEqualTo (line 307) | public Criteria andCoursetimeEqualTo(String value) { method andCoursetimeNotEqualTo (line 312) | public Criteria andCoursetimeNotEqualTo(String value) { method andCoursetimeGreaterThan (line 317) | public Criteria andCoursetimeGreaterThan(String value) { method andCoursetimeGreaterThanOrEqualTo (line 322) | public Criteria andCoursetimeGreaterThanOrEqualTo(String value) { method andCoursetimeLessThan (line 327) | public Criteria andCoursetimeLessThan(String value) { method andCoursetimeLessThanOrEqualTo (line 332) | public Criteria andCoursetimeLessThanOrEqualTo(String value) { method andCoursetimeLike (line 337) | public Criteria andCoursetimeLike(String value) { method andCoursetimeNotLike (line 342) | public Criteria andCoursetimeNotLike(String value) { method andCoursetimeIn (line 347) | public Criteria andCoursetimeIn(List values) { method andCoursetimeNotIn (line 352) | public Criteria andCoursetimeNotIn(List values) { method andCoursetimeBetween (line 357) | public Criteria andCoursetimeBetween(String value1, String value2) { method andCoursetimeNotBetween (line 362) | public Criteria andCoursetimeNotBetween(String value1, String value2) { method andClassroomIsNull (line 367) | public Criteria andClassroomIsNull() { method andClassroomIsNotNull (line 372) | public Criteria andClassroomIsNotNull() { method andClassroomEqualTo (line 377) | public Criteria andClassroomEqualTo(String value) { method andClassroomNotEqualTo (line 382) | public Criteria andClassroomNotEqualTo(String value) { method andClassroomGreaterThan (line 387) | public Criteria andClassroomGreaterThan(String value) { method andClassroomGreaterThanOrEqualTo (line 392) | public Criteria andClassroomGreaterThanOrEqualTo(String value) { method andClassroomLessThan (line 397) | public Criteria andClassroomLessThan(String value) { method andClassroomLessThanOrEqualTo (line 402) | public Criteria andClassroomLessThanOrEqualTo(String value) { method andClassroomLike (line 407) | public Criteria andClassroomLike(String value) { method andClassroomNotLike (line 412) | public Criteria andClassroomNotLike(String value) { method andClassroomIn (line 417) | public Criteria andClassroomIn(List values) { method andClassroomNotIn (line 422) | public Criteria andClassroomNotIn(List values) { method andClassroomBetween (line 427) | public Criteria andClassroomBetween(String value1, String value2) { method andClassroomNotBetween (line 432) | public Criteria andClassroomNotBetween(String value1, String value2) { method andCourseweekIsNull (line 437) | public Criteria andCourseweekIsNull() { method andCourseweekIsNotNull (line 442) | public Criteria andCourseweekIsNotNull() { method andCourseweekEqualTo (line 447) | public Criteria andCourseweekEqualTo(Integer value) { method andCourseweekNotEqualTo (line 452) | public Criteria andCourseweekNotEqualTo(Integer value) { method andCourseweekGreaterThan (line 457) | public Criteria andCourseweekGreaterThan(Integer value) { method andCourseweekGreaterThanOrEqualTo (line 462) | public Criteria andCourseweekGreaterThanOrEqualTo(Integer value) { method andCourseweekLessThan (line 467) | public Criteria andCourseweekLessThan(Integer value) { method andCourseweekLessThanOrEqualTo (line 472) | public Criteria andCourseweekLessThanOrEqualTo(Integer value) { method andCourseweekIn (line 477) | public Criteria andCourseweekIn(List values) { method andCourseweekNotIn (line 482) | public Criteria andCourseweekNotIn(List values) { method andCourseweekBetween (line 487) | public Criteria andCourseweekBetween(Integer value1, Integer value2) { method andCourseweekNotBetween (line 492) | public Criteria andCourseweekNotBetween(Integer value1, Integer valu... method andCoursetypeIsNull (line 497) | public Criteria andCoursetypeIsNull() { method andCoursetypeIsNotNull (line 502) | public Criteria andCoursetypeIsNotNull() { method andCoursetypeEqualTo (line 507) | public Criteria andCoursetypeEqualTo(String value) { method andCoursetypeNotEqualTo (line 512) | public Criteria andCoursetypeNotEqualTo(String value) { method andCoursetypeGreaterThan (line 517) | public Criteria andCoursetypeGreaterThan(String value) { method andCoursetypeGreaterThanOrEqualTo (line 522) | public Criteria andCoursetypeGreaterThanOrEqualTo(String value) { method andCoursetypeLessThan (line 527) | public Criteria andCoursetypeLessThan(String value) { method andCoursetypeLessThanOrEqualTo (line 532) | public Criteria andCoursetypeLessThanOrEqualTo(String value) { method andCoursetypeLike (line 537) | public Criteria andCoursetypeLike(String value) { method andCoursetypeNotLike (line 542) | public Criteria andCoursetypeNotLike(String value) { method andCoursetypeIn (line 547) | public Criteria andCoursetypeIn(List values) { method andCoursetypeNotIn (line 552) | public Criteria andCoursetypeNotIn(List values) { method andCoursetypeBetween (line 557) | public Criteria andCoursetypeBetween(String value1, String value2) { method andCoursetypeNotBetween (line 562) | public Criteria andCoursetypeNotBetween(String value1, String value2) { method andCollegeidIsNull (line 567) | public Criteria andCollegeidIsNull() { method andCollegeidIsNotNull (line 572) | public Criteria andCollegeidIsNotNull() { method andCollegeidEqualTo (line 577) | public Criteria andCollegeidEqualTo(Integer value) { method andCollegeidNotEqualTo (line 582) | public Criteria andCollegeidNotEqualTo(Integer value) { method andCollegeidGreaterThan (line 587) | public Criteria andCollegeidGreaterThan(Integer value) { method andCollegeidGreaterThanOrEqualTo (line 592) | public Criteria andCollegeidGreaterThanOrEqualTo(Integer value) { method andCollegeidLessThan (line 597) | public Criteria andCollegeidLessThan(Integer value) { method andCollegeidLessThanOrEqualTo (line 602) | public Criteria andCollegeidLessThanOrEqualTo(Integer value) { method andCollegeidIn (line 607) | public Criteria andCollegeidIn(List values) { method andCollegeidNotIn (line 612) | public Criteria andCollegeidNotIn(List values) { method andCollegeidBetween (line 617) | public Criteria andCollegeidBetween(Integer value1, Integer value2) { method andCollegeidNotBetween (line 622) | public Criteria andCollegeidNotBetween(Integer value1, Integer value... method andScoreIsNull (line 627) | public Criteria andScoreIsNull() { method andScoreIsNotNull (line 632) | public Criteria andScoreIsNotNull() { method andScoreEqualTo (line 637) | public Criteria andScoreEqualTo(Integer value) { method andScoreNotEqualTo (line 642) | public Criteria andScoreNotEqualTo(Integer value) { method andScoreGreaterThan (line 647) | public Criteria andScoreGreaterThan(Integer value) { method andScoreGreaterThanOrEqualTo (line 652) | public Criteria andScoreGreaterThanOrEqualTo(Integer value) { method andScoreLessThan (line 657) | public Criteria andScoreLessThan(Integer value) { method andScoreLessThanOrEqualTo (line 662) | public Criteria andScoreLessThanOrEqualTo(Integer value) { method andScoreIn (line 667) | public Criteria andScoreIn(List values) { method andScoreNotIn (line 672) | public Criteria andScoreNotIn(List values) { method andScoreBetween (line 677) | public Criteria andScoreBetween(Integer value1, Integer value2) { method andScoreNotBetween (line 682) | public Criteria andScoreNotBetween(Integer value1, Integer value2) { class Criteria (line 688) | public static class Criteria extends GeneratedCriteria { method Criteria (line 690) | protected Criteria() { class Criterion (line 695) | public static class Criterion { method getCondition (line 712) | public String getCondition() { method getValue (line 716) | public Object getValue() { method getSecondValue (line 720) | public Object getSecondValue() { method isNoValue (line 724) | public boolean isNoValue() { method isSingleValue (line 728) | public boolean isSingleValue() { method isBetweenValue (line 732) | public boolean isBetweenValue() { method isListValue (line 736) | public boolean isListValue() { method getTypeHandler (line 740) | public String getTypeHandler() { method Criterion (line 744) | protected Criterion(String condition) { method Criterion (line 751) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 763) | protected Criterion(String condition, Object value) { method Criterion (line 767) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 776) | protected Criterion(String condition, Object value, Object secondVal... FILE: src/main/java/com/system/po/PagingVO.java class PagingVO (line 6) | public class PagingVO { method setToPageNo (line 21) | public void setToPageNo(Integer toPageNo) { method getTopageNo (line 28) | public Integer getTopageNo() { method getCurentPageNo (line 32) | public int getCurentPageNo() { method setCurentPageNo (line 37) | public void setCurentPageNo(int curentPageNo) { method getTotalCount (line 46) | public int getTotalCount() { method setTotalCount (line 50) | public void setTotalCount(int totalCount) { method getPageSize (line 59) | public int getPageSize() { method setPageSize (line 63) | public void setPageSize(int pageSize) { method getUpPageNo (line 67) | public int getUpPageNo() { method setUpPageNo (line 71) | public void setUpPageNo(int upPageNo) { method getNextPageNo (line 75) | public int getNextPageNo() { method setNextPageNo (line 79) | public void setNextPageNo(int nextPageNo) { FILE: src/main/java/com/system/po/Role.java class Role (line 3) | public class Role { method getRoleid (line 10) | public Integer getRoleid() { method setRoleid (line 14) | public void setRoleid(Integer roleid) { method getRolename (line 18) | public String getRolename() { method setRolename (line 22) | public void setRolename(String rolename) { method getPermissions (line 26) | public String getPermissions() { method setPermissions (line 30) | public void setPermissions(String permissions) { FILE: src/main/java/com/system/po/RoleExample.java class RoleExample (line 6) | public class RoleExample { method RoleExample (line 13) | public RoleExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andRoleidIsNull (line 107) | public Criteria andRoleidIsNull() { method andRoleidIsNotNull (line 112) | public Criteria andRoleidIsNotNull() { method andRoleidEqualTo (line 117) | public Criteria andRoleidEqualTo(Integer value) { method andRoleidNotEqualTo (line 122) | public Criteria andRoleidNotEqualTo(Integer value) { method andRoleidGreaterThan (line 127) | public Criteria andRoleidGreaterThan(Integer value) { method andRoleidGreaterThanOrEqualTo (line 132) | public Criteria andRoleidGreaterThanOrEqualTo(Integer value) { method andRoleidLessThan (line 137) | public Criteria andRoleidLessThan(Integer value) { method andRoleidLessThanOrEqualTo (line 142) | public Criteria andRoleidLessThanOrEqualTo(Integer value) { method andRoleidIn (line 147) | public Criteria andRoleidIn(List values) { method andRoleidNotIn (line 152) | public Criteria andRoleidNotIn(List values) { method andRoleidBetween (line 157) | public Criteria andRoleidBetween(Integer value1, Integer value2) { method andRoleidNotBetween (line 162) | public Criteria andRoleidNotBetween(Integer value1, Integer value2) { method andRolenameIsNull (line 167) | public Criteria andRolenameIsNull() { method andRolenameIsNotNull (line 172) | public Criteria andRolenameIsNotNull() { method andRolenameEqualTo (line 177) | public Criteria andRolenameEqualTo(String value) { method andRolenameNotEqualTo (line 182) | public Criteria andRolenameNotEqualTo(String value) { method andRolenameGreaterThan (line 187) | public Criteria andRolenameGreaterThan(String value) { method andRolenameGreaterThanOrEqualTo (line 192) | public Criteria andRolenameGreaterThanOrEqualTo(String value) { method andRolenameLessThan (line 197) | public Criteria andRolenameLessThan(String value) { method andRolenameLessThanOrEqualTo (line 202) | public Criteria andRolenameLessThanOrEqualTo(String value) { method andRolenameLike (line 207) | public Criteria andRolenameLike(String value) { method andRolenameNotLike (line 212) | public Criteria andRolenameNotLike(String value) { method andRolenameIn (line 217) | public Criteria andRolenameIn(List values) { method andRolenameNotIn (line 222) | public Criteria andRolenameNotIn(List values) { method andRolenameBetween (line 227) | public Criteria andRolenameBetween(String value1, String value2) { method andRolenameNotBetween (line 232) | public Criteria andRolenameNotBetween(String value1, String value2) { method andPermissionsIsNull (line 237) | public Criteria andPermissionsIsNull() { method andPermissionsIsNotNull (line 242) | public Criteria andPermissionsIsNotNull() { method andPermissionsEqualTo (line 247) | public Criteria andPermissionsEqualTo(String value) { method andPermissionsNotEqualTo (line 252) | public Criteria andPermissionsNotEqualTo(String value) { method andPermissionsGreaterThan (line 257) | public Criteria andPermissionsGreaterThan(String value) { method andPermissionsGreaterThanOrEqualTo (line 262) | public Criteria andPermissionsGreaterThanOrEqualTo(String value) { method andPermissionsLessThan (line 267) | public Criteria andPermissionsLessThan(String value) { method andPermissionsLessThanOrEqualTo (line 272) | public Criteria andPermissionsLessThanOrEqualTo(String value) { method andPermissionsLike (line 277) | public Criteria andPermissionsLike(String value) { method andPermissionsNotLike (line 282) | public Criteria andPermissionsNotLike(String value) { method andPermissionsIn (line 287) | public Criteria andPermissionsIn(List values) { method andPermissionsNotIn (line 292) | public Criteria andPermissionsNotIn(List values) { method andPermissionsBetween (line 297) | public Criteria andPermissionsBetween(String value1, String value2) { method andPermissionsNotBetween (line 302) | public Criteria andPermissionsNotBetween(String value1, String value... class Criteria (line 308) | public static class Criteria extends GeneratedCriteria { method Criteria (line 310) | protected Criteria() { class Criterion (line 315) | public static class Criterion { method getCondition (line 332) | public String getCondition() { method getValue (line 336) | public Object getValue() { method getSecondValue (line 340) | public Object getSecondValue() { method isNoValue (line 344) | public boolean isNoValue() { method isSingleValue (line 348) | public boolean isSingleValue() { method isBetweenValue (line 352) | public boolean isBetweenValue() { method isListValue (line 356) | public boolean isListValue() { method getTypeHandler (line 360) | public String getTypeHandler() { method Criterion (line 364) | protected Criterion(String condition) { method Criterion (line 371) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 383) | protected Criterion(String condition, Object value) { method Criterion (line 387) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 396) | protected Criterion(String condition, Object value, Object secondVal... FILE: src/main/java/com/system/po/SelectedCourseCustom.java class SelectedCourseCustom (line 6) | public class SelectedCourseCustom extends Selectedcourse { method getOver (line 17) | public Boolean getOver() { method setOver (line 21) | public void setOver(Boolean over) { method getStudentCustom (line 25) | public StudentCustom getStudentCustom() { method setStudentCustom (line 29) | public void setStudentCustom(StudentCustom studentCustom) { method getCouseCustom (line 33) | public CourseCustom getCouseCustom() { method setCouseCustom (line 37) | public void setCouseCustom(CourseCustom couseCustom) { FILE: src/main/java/com/system/po/Selectedcourse.java class Selectedcourse (line 3) | public class Selectedcourse { method getCourseid (line 10) | public Integer getCourseid() { method setCourseid (line 14) | public void setCourseid(Integer courseid) { method getStudentid (line 18) | public Integer getStudentid() { method setStudentid (line 22) | public void setStudentid(Integer studentid) { method getMark (line 26) | public Integer getMark() { method setMark (line 30) | public void setMark(Integer mark) { FILE: src/main/java/com/system/po/SelectedcourseExample.java class SelectedcourseExample (line 6) | public class SelectedcourseExample { method SelectedcourseExample (line 13) | public SelectedcourseExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andCourseidIsNull (line 107) | public Criteria andCourseidIsNull() { method andCourseidIsNotNull (line 112) | public Criteria andCourseidIsNotNull() { method andCourseidEqualTo (line 117) | public Criteria andCourseidEqualTo(Integer value) { method andCourseidNotEqualTo (line 122) | public Criteria andCourseidNotEqualTo(Integer value) { method andCourseidGreaterThan (line 127) | public Criteria andCourseidGreaterThan(Integer value) { method andCourseidGreaterThanOrEqualTo (line 132) | public Criteria andCourseidGreaterThanOrEqualTo(Integer value) { method andCourseidLessThan (line 137) | public Criteria andCourseidLessThan(Integer value) { method andCourseidLessThanOrEqualTo (line 142) | public Criteria andCourseidLessThanOrEqualTo(Integer value) { method andCourseidIn (line 147) | public Criteria andCourseidIn(List values) { method andCourseidNotIn (line 152) | public Criteria andCourseidNotIn(List values) { method andCourseidBetween (line 157) | public Criteria andCourseidBetween(Integer value1, Integer value2) { method andCourseidNotBetween (line 162) | public Criteria andCourseidNotBetween(Integer value1, Integer value2) { method andStudentidIsNull (line 167) | public Criteria andStudentidIsNull() { method andStudentidIsNotNull (line 172) | public Criteria andStudentidIsNotNull() { method andStudentidEqualTo (line 177) | public Criteria andStudentidEqualTo(Integer value) { method andStudentidNotEqualTo (line 182) | public Criteria andStudentidNotEqualTo(Integer value) { method andStudentidGreaterThan (line 187) | public Criteria andStudentidGreaterThan(Integer value) { method andStudentidGreaterThanOrEqualTo (line 192) | public Criteria andStudentidGreaterThanOrEqualTo(Integer value) { method andStudentidLessThan (line 197) | public Criteria andStudentidLessThan(Integer value) { method andStudentidLessThanOrEqualTo (line 202) | public Criteria andStudentidLessThanOrEqualTo(Integer value) { method andStudentidIn (line 207) | public Criteria andStudentidIn(List values) { method andStudentidNotIn (line 212) | public Criteria andStudentidNotIn(List values) { method andStudentidBetween (line 217) | public Criteria andStudentidBetween(Integer value1, Integer value2) { method andStudentidNotBetween (line 222) | public Criteria andStudentidNotBetween(Integer value1, Integer value... method andMarkIsNull (line 227) | public Criteria andMarkIsNull() { method andMarkIsNotNull (line 232) | public Criteria andMarkIsNotNull() { method andMarkEqualTo (line 237) | public Criteria andMarkEqualTo(Integer value) { method andMarkNotEqualTo (line 242) | public Criteria andMarkNotEqualTo(Integer value) { method andMarkGreaterThan (line 247) | public Criteria andMarkGreaterThan(Integer value) { method andMarkGreaterThanOrEqualTo (line 252) | public Criteria andMarkGreaterThanOrEqualTo(Integer value) { method andMarkLessThan (line 257) | public Criteria andMarkLessThan(Integer value) { method andMarkLessThanOrEqualTo (line 262) | public Criteria andMarkLessThanOrEqualTo(Integer value) { method andMarkIn (line 267) | public Criteria andMarkIn(List values) { method andMarkNotIn (line 272) | public Criteria andMarkNotIn(List values) { method andMarkBetween (line 277) | public Criteria andMarkBetween(Integer value1, Integer value2) { method andMarkNotBetween (line 282) | public Criteria andMarkNotBetween(Integer value1, Integer value2) { class Criteria (line 288) | public static class Criteria extends GeneratedCriteria { method Criteria (line 290) | protected Criteria() { class Criterion (line 295) | public static class Criterion { method getCondition (line 312) | public String getCondition() { method getValue (line 316) | public Object getValue() { method getSecondValue (line 320) | public Object getSecondValue() { method isNoValue (line 324) | public boolean isNoValue() { method isSingleValue (line 328) | public boolean isSingleValue() { method isBetweenValue (line 332) | public boolean isBetweenValue() { method isListValue (line 336) | public boolean isListValue() { method getTypeHandler (line 340) | public String getTypeHandler() { method Criterion (line 344) | protected Criterion(String condition) { method Criterion (line 351) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 363) | protected Criterion(String condition, Object value) { method Criterion (line 367) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 376) | protected Criterion(String condition, Object value, Object secondVal... FILE: src/main/java/com/system/po/Student.java class Student (line 5) | public class Student { method getUserid (line 18) | public Integer getUserid() { method setUserid (line 22) | public void setUserid(Integer userid) { method getUsername (line 26) | public String getUsername() { method setUsername (line 30) | public void setUsername(String username) { method getSex (line 34) | public String getSex() { method setSex (line 38) | public void setSex(String sex) { method getBirthyear (line 42) | public Date getBirthyear() { method setBirthyear (line 46) | public void setBirthyear(Date birthyear) { method getGrade (line 50) | public Date getGrade() { method setGrade (line 54) | public void setGrade(Date grade) { method getCollegeid (line 58) | public Integer getCollegeid() { method setCollegeid (line 62) | public void setCollegeid(Integer collegeid) { FILE: src/main/java/com/system/po/StudentCustom.java class StudentCustom (line 8) | public class StudentCustom extends Student { method setcollegeName (line 16) | public void setcollegeName(String collegeName) { method getcollegeName (line 20) | public String getcollegeName() { method setSelectedCourseList (line 24) | public void setSelectedCourseList(List selectedC... method getSelectedCourseList (line 28) | public List getSelectedCourseList() { FILE: src/main/java/com/system/po/StudentExample.java class StudentExample (line 8) | public class StudentExample { method StudentExample (line 15) | public StudentExample() { method setOrderByClause (line 19) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 23) | public String getOrderByClause() { method setDistinct (line 27) | public void setDistinct(boolean distinct) { method isDistinct (line 31) | public boolean isDistinct() { method getOredCriteria (line 35) | public List getOredCriteria() { method or (line 39) | public void or(Criteria criteria) { method or (line 43) | public Criteria or() { method createCriteria (line 49) | public Criteria createCriteria() { method createCriteriaInternal (line 57) | protected Criteria createCriteriaInternal() { method clear (line 62) | public void clear() { class GeneratedCriteria (line 68) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 71) | protected GeneratedCriteria() { method isValid (line 76) | public boolean isValid() { method getAllCriteria (line 80) | public List getAllCriteria() { method getCriteria (line 84) | public List getCriteria() { method addCriterion (line 88) | protected void addCriterion(String condition) { method addCriterion (line 95) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 102) | protected void addCriterion(String condition, Object value1, Object ... method addCriterionForJDBCDate (line 109) | protected void addCriterionForJDBCDate(String condition, Date value,... method addCriterionForJDBCDate (line 116) | protected void addCriterionForJDBCDate(String condition, List ... method addCriterionForJDBCDate (line 128) | protected void addCriterionForJDBCDate(String condition, Date value1... method andUseridIsNull (line 135) | public Criteria andUseridIsNull() { method andUseridIsNotNull (line 140) | public Criteria andUseridIsNotNull() { method andUseridEqualTo (line 145) | public Criteria andUseridEqualTo(Integer value) { method andUseridNotEqualTo (line 150) | public Criteria andUseridNotEqualTo(Integer value) { method andUseridGreaterThan (line 155) | public Criteria andUseridGreaterThan(Integer value) { method andUseridGreaterThanOrEqualTo (line 160) | public Criteria andUseridGreaterThanOrEqualTo(Integer value) { method andUseridLessThan (line 165) | public Criteria andUseridLessThan(Integer value) { method andUseridLessThanOrEqualTo (line 170) | public Criteria andUseridLessThanOrEqualTo(Integer value) { method andUseridIn (line 175) | public Criteria andUseridIn(List values) { method andUseridNotIn (line 180) | public Criteria andUseridNotIn(List values) { method andUseridBetween (line 185) | public Criteria andUseridBetween(Integer value1, Integer value2) { method andUseridNotBetween (line 190) | public Criteria andUseridNotBetween(Integer value1, Integer value2) { method andUsernameIsNull (line 195) | public Criteria andUsernameIsNull() { method andUsernameIsNotNull (line 200) | public Criteria andUsernameIsNotNull() { method andUsernameEqualTo (line 205) | public Criteria andUsernameEqualTo(String value) { method andUsernameNotEqualTo (line 210) | public Criteria andUsernameNotEqualTo(String value) { method andUsernameGreaterThan (line 215) | public Criteria andUsernameGreaterThan(String value) { method andUsernameGreaterThanOrEqualTo (line 220) | public Criteria andUsernameGreaterThanOrEqualTo(String value) { method andUsernameLessThan (line 225) | public Criteria andUsernameLessThan(String value) { method andUsernameLessThanOrEqualTo (line 230) | public Criteria andUsernameLessThanOrEqualTo(String value) { method andUsernameLike (line 235) | public Criteria andUsernameLike(String value) { method andUsernameNotLike (line 240) | public Criteria andUsernameNotLike(String value) { method andUsernameIn (line 245) | public Criteria andUsernameIn(List values) { method andUsernameNotIn (line 250) | public Criteria andUsernameNotIn(List values) { method andUsernameBetween (line 255) | public Criteria andUsernameBetween(String value1, String value2) { method andUsernameNotBetween (line 260) | public Criteria andUsernameNotBetween(String value1, String value2) { method andSexIsNull (line 265) | public Criteria andSexIsNull() { method andSexIsNotNull (line 270) | public Criteria andSexIsNotNull() { method andSexEqualTo (line 275) | public Criteria andSexEqualTo(String value) { method andSexNotEqualTo (line 280) | public Criteria andSexNotEqualTo(String value) { method andSexGreaterThan (line 285) | public Criteria andSexGreaterThan(String value) { method andSexGreaterThanOrEqualTo (line 290) | public Criteria andSexGreaterThanOrEqualTo(String value) { method andSexLessThan (line 295) | public Criteria andSexLessThan(String value) { method andSexLessThanOrEqualTo (line 300) | public Criteria andSexLessThanOrEqualTo(String value) { method andSexLike (line 305) | public Criteria andSexLike(String value) { method andSexNotLike (line 310) | public Criteria andSexNotLike(String value) { method andSexIn (line 315) | public Criteria andSexIn(List values) { method andSexNotIn (line 320) | public Criteria andSexNotIn(List values) { method andSexBetween (line 325) | public Criteria andSexBetween(String value1, String value2) { method andSexNotBetween (line 330) | public Criteria andSexNotBetween(String value1, String value2) { method andBirthyearIsNull (line 335) | public Criteria andBirthyearIsNull() { method andBirthyearIsNotNull (line 340) | public Criteria andBirthyearIsNotNull() { method andBirthyearEqualTo (line 345) | public Criteria andBirthyearEqualTo(Date value) { method andBirthyearNotEqualTo (line 350) | public Criteria andBirthyearNotEqualTo(Date value) { method andBirthyearGreaterThan (line 355) | public Criteria andBirthyearGreaterThan(Date value) { method andBirthyearGreaterThanOrEqualTo (line 360) | public Criteria andBirthyearGreaterThanOrEqualTo(Date value) { method andBirthyearLessThan (line 365) | public Criteria andBirthyearLessThan(Date value) { method andBirthyearLessThanOrEqualTo (line 370) | public Criteria andBirthyearLessThanOrEqualTo(Date value) { method andBirthyearIn (line 375) | public Criteria andBirthyearIn(List values) { method andBirthyearNotIn (line 380) | public Criteria andBirthyearNotIn(List values) { method andBirthyearBetween (line 385) | public Criteria andBirthyearBetween(Date value1, Date value2) { method andBirthyearNotBetween (line 390) | public Criteria andBirthyearNotBetween(Date value1, Date value2) { method andGradeIsNull (line 395) | public Criteria andGradeIsNull() { method andGradeIsNotNull (line 400) | public Criteria andGradeIsNotNull() { method andGradeEqualTo (line 405) | public Criteria andGradeEqualTo(Date value) { method andGradeNotEqualTo (line 410) | public Criteria andGradeNotEqualTo(Date value) { method andGradeGreaterThan (line 415) | public Criteria andGradeGreaterThan(Date value) { method andGradeGreaterThanOrEqualTo (line 420) | public Criteria andGradeGreaterThanOrEqualTo(Date value) { method andGradeLessThan (line 425) | public Criteria andGradeLessThan(Date value) { method andGradeLessThanOrEqualTo (line 430) | public Criteria andGradeLessThanOrEqualTo(Date value) { method andGradeIn (line 435) | public Criteria andGradeIn(List values) { method andGradeNotIn (line 440) | public Criteria andGradeNotIn(List values) { method andGradeBetween (line 445) | public Criteria andGradeBetween(Date value1, Date value2) { method andGradeNotBetween (line 450) | public Criteria andGradeNotBetween(Date value1, Date value2) { method andCollegeidIsNull (line 455) | public Criteria andCollegeidIsNull() { method andCollegeidIsNotNull (line 460) | public Criteria andCollegeidIsNotNull() { method andCollegeidEqualTo (line 465) | public Criteria andCollegeidEqualTo(Integer value) { method andCollegeidNotEqualTo (line 470) | public Criteria andCollegeidNotEqualTo(Integer value) { method andCollegeidGreaterThan (line 475) | public Criteria andCollegeidGreaterThan(Integer value) { method andCollegeidGreaterThanOrEqualTo (line 480) | public Criteria andCollegeidGreaterThanOrEqualTo(Integer value) { method andCollegeidLessThan (line 485) | public Criteria andCollegeidLessThan(Integer value) { method andCollegeidLessThanOrEqualTo (line 490) | public Criteria andCollegeidLessThanOrEqualTo(Integer value) { method andCollegeidIn (line 495) | public Criteria andCollegeidIn(List values) { method andCollegeidNotIn (line 500) | public Criteria andCollegeidNotIn(List values) { method andCollegeidBetween (line 505) | public Criteria andCollegeidBetween(Integer value1, Integer value2) { method andCollegeidNotBetween (line 510) | public Criteria andCollegeidNotBetween(Integer value1, Integer value... class Criteria (line 516) | public static class Criteria extends GeneratedCriteria { method Criteria (line 518) | protected Criteria() { class Criterion (line 523) | public static class Criterion { method getCondition (line 540) | public String getCondition() { method getValue (line 544) | public Object getValue() { method getSecondValue (line 548) | public Object getSecondValue() { method isNoValue (line 552) | public boolean isNoValue() { method isSingleValue (line 556) | public boolean isSingleValue() { method isBetweenValue (line 560) | public boolean isBetweenValue() { method isListValue (line 564) | public boolean isListValue() { method getTypeHandler (line 568) | public String getTypeHandler() { method Criterion (line 572) | protected Criterion(String condition) { method Criterion (line 579) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 591) | protected Criterion(String condition, Object value) { method Criterion (line 595) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 604) | protected Criterion(String condition, Object value, Object secondVal... FILE: src/main/java/com/system/po/Teacher.java class Teacher (line 5) | public class Teacher { method getUserid (line 22) | public Integer getUserid() { method setUserid (line 26) | public void setUserid(Integer userid) { method getUsername (line 30) | public String getUsername() { method setUsername (line 34) | public void setUsername(String username) { method getSex (line 38) | public String getSex() { method setSex (line 42) | public void setSex(String sex) { method getBirthyear (line 46) | public Date getBirthyear() { method setBirthyear (line 50) | public void setBirthyear(Date birthyear) { method getDegree (line 54) | public String getDegree() { method setDegree (line 58) | public void setDegree(String degree) { method getTitle (line 62) | public String getTitle() { method setTitle (line 66) | public void setTitle(String title) { method getGrade (line 70) | public Date getGrade() { method setGrade (line 74) | public void setGrade(Date grade) { method getCollegeid (line 78) | public Integer getCollegeid() { method setCollegeid (line 82) | public void setCollegeid(Integer collegeid) { FILE: src/main/java/com/system/po/TeacherCustom.java class TeacherCustom (line 6) | public class TeacherCustom extends Teacher { method setcollegeName (line 10) | public void setcollegeName(String collegeName) { method getcollegeName (line 14) | public String getcollegeName() { FILE: src/main/java/com/system/po/TeacherExample.java class TeacherExample (line 8) | public class TeacherExample { method TeacherExample (line 15) | public TeacherExample() { method setOrderByClause (line 19) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 23) | public String getOrderByClause() { method setDistinct (line 27) | public void setDistinct(boolean distinct) { method isDistinct (line 31) | public boolean isDistinct() { method getOredCriteria (line 35) | public List getOredCriteria() { method or (line 39) | public void or(Criteria criteria) { method or (line 43) | public Criteria or() { method createCriteria (line 49) | public Criteria createCriteria() { method createCriteriaInternal (line 57) | protected Criteria createCriteriaInternal() { method clear (line 62) | public void clear() { class GeneratedCriteria (line 68) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 71) | protected GeneratedCriteria() { method isValid (line 76) | public boolean isValid() { method getAllCriteria (line 80) | public List getAllCriteria() { method getCriteria (line 84) | public List getCriteria() { method addCriterion (line 88) | protected void addCriterion(String condition) { method addCriterion (line 95) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 102) | protected void addCriterion(String condition, Object value1, Object ... method addCriterionForJDBCDate (line 109) | protected void addCriterionForJDBCDate(String condition, Date value,... method addCriterionForJDBCDate (line 116) | protected void addCriterionForJDBCDate(String condition, List ... method addCriterionForJDBCDate (line 128) | protected void addCriterionForJDBCDate(String condition, Date value1... method andUseridIsNull (line 135) | public Criteria andUseridIsNull() { method andUseridIsNotNull (line 140) | public Criteria andUseridIsNotNull() { method andUseridEqualTo (line 145) | public Criteria andUseridEqualTo(Integer value) { method andUseridNotEqualTo (line 150) | public Criteria andUseridNotEqualTo(Integer value) { method andUseridGreaterThan (line 155) | public Criteria andUseridGreaterThan(Integer value) { method andUseridGreaterThanOrEqualTo (line 160) | public Criteria andUseridGreaterThanOrEqualTo(Integer value) { method andUseridLessThan (line 165) | public Criteria andUseridLessThan(Integer value) { method andUseridLessThanOrEqualTo (line 170) | public Criteria andUseridLessThanOrEqualTo(Integer value) { method andUseridIn (line 175) | public Criteria andUseridIn(List values) { method andUseridNotIn (line 180) | public Criteria andUseridNotIn(List values) { method andUseridBetween (line 185) | public Criteria andUseridBetween(Integer value1, Integer value2) { method andUseridNotBetween (line 190) | public Criteria andUseridNotBetween(Integer value1, Integer value2) { method andUsernameIsNull (line 195) | public Criteria andUsernameIsNull() { method andUsernameIsNotNull (line 200) | public Criteria andUsernameIsNotNull() { method andUsernameEqualTo (line 205) | public Criteria andUsernameEqualTo(String value) { method andUsernameNotEqualTo (line 210) | public Criteria andUsernameNotEqualTo(String value) { method andUsernameGreaterThan (line 215) | public Criteria andUsernameGreaterThan(String value) { method andUsernameGreaterThanOrEqualTo (line 220) | public Criteria andUsernameGreaterThanOrEqualTo(String value) { method andUsernameLessThan (line 225) | public Criteria andUsernameLessThan(String value) { method andUsernameLessThanOrEqualTo (line 230) | public Criteria andUsernameLessThanOrEqualTo(String value) { method andUsernameLike (line 235) | public Criteria andUsernameLike(String value) { method andUsernameNotLike (line 240) | public Criteria andUsernameNotLike(String value) { method andUsernameIn (line 245) | public Criteria andUsernameIn(List values) { method andUsernameNotIn (line 250) | public Criteria andUsernameNotIn(List values) { method andUsernameBetween (line 255) | public Criteria andUsernameBetween(String value1, String value2) { method andUsernameNotBetween (line 260) | public Criteria andUsernameNotBetween(String value1, String value2) { method andSexIsNull (line 265) | public Criteria andSexIsNull() { method andSexIsNotNull (line 270) | public Criteria andSexIsNotNull() { method andSexEqualTo (line 275) | public Criteria andSexEqualTo(String value) { method andSexNotEqualTo (line 280) | public Criteria andSexNotEqualTo(String value) { method andSexGreaterThan (line 285) | public Criteria andSexGreaterThan(String value) { method andSexGreaterThanOrEqualTo (line 290) | public Criteria andSexGreaterThanOrEqualTo(String value) { method andSexLessThan (line 295) | public Criteria andSexLessThan(String value) { method andSexLessThanOrEqualTo (line 300) | public Criteria andSexLessThanOrEqualTo(String value) { method andSexLike (line 305) | public Criteria andSexLike(String value) { method andSexNotLike (line 310) | public Criteria andSexNotLike(String value) { method andSexIn (line 315) | public Criteria andSexIn(List values) { method andSexNotIn (line 320) | public Criteria andSexNotIn(List values) { method andSexBetween (line 325) | public Criteria andSexBetween(String value1, String value2) { method andSexNotBetween (line 330) | public Criteria andSexNotBetween(String value1, String value2) { method andBirthyearIsNull (line 335) | public Criteria andBirthyearIsNull() { method andBirthyearIsNotNull (line 340) | public Criteria andBirthyearIsNotNull() { method andBirthyearEqualTo (line 345) | public Criteria andBirthyearEqualTo(Date value) { method andBirthyearNotEqualTo (line 350) | public Criteria andBirthyearNotEqualTo(Date value) { method andBirthyearGreaterThan (line 355) | public Criteria andBirthyearGreaterThan(Date value) { method andBirthyearGreaterThanOrEqualTo (line 360) | public Criteria andBirthyearGreaterThanOrEqualTo(Date value) { method andBirthyearLessThan (line 365) | public Criteria andBirthyearLessThan(Date value) { method andBirthyearLessThanOrEqualTo (line 370) | public Criteria andBirthyearLessThanOrEqualTo(Date value) { method andBirthyearIn (line 375) | public Criteria andBirthyearIn(List values) { method andBirthyearNotIn (line 380) | public Criteria andBirthyearNotIn(List values) { method andBirthyearBetween (line 385) | public Criteria andBirthyearBetween(Date value1, Date value2) { method andBirthyearNotBetween (line 390) | public Criteria andBirthyearNotBetween(Date value1, Date value2) { method andDegreeIsNull (line 395) | public Criteria andDegreeIsNull() { method andDegreeIsNotNull (line 400) | public Criteria andDegreeIsNotNull() { method andDegreeEqualTo (line 405) | public Criteria andDegreeEqualTo(String value) { method andDegreeNotEqualTo (line 410) | public Criteria andDegreeNotEqualTo(String value) { method andDegreeGreaterThan (line 415) | public Criteria andDegreeGreaterThan(String value) { method andDegreeGreaterThanOrEqualTo (line 420) | public Criteria andDegreeGreaterThanOrEqualTo(String value) { method andDegreeLessThan (line 425) | public Criteria andDegreeLessThan(String value) { method andDegreeLessThanOrEqualTo (line 430) | public Criteria andDegreeLessThanOrEqualTo(String value) { method andDegreeLike (line 435) | public Criteria andDegreeLike(String value) { method andDegreeNotLike (line 440) | public Criteria andDegreeNotLike(String value) { method andDegreeIn (line 445) | public Criteria andDegreeIn(List values) { method andDegreeNotIn (line 450) | public Criteria andDegreeNotIn(List values) { method andDegreeBetween (line 455) | public Criteria andDegreeBetween(String value1, String value2) { method andDegreeNotBetween (line 460) | public Criteria andDegreeNotBetween(String value1, String value2) { method andTitleIsNull (line 465) | public Criteria andTitleIsNull() { method andTitleIsNotNull (line 470) | public Criteria andTitleIsNotNull() { method andTitleEqualTo (line 475) | public Criteria andTitleEqualTo(String value) { method andTitleNotEqualTo (line 480) | public Criteria andTitleNotEqualTo(String value) { method andTitleGreaterThan (line 485) | public Criteria andTitleGreaterThan(String value) { method andTitleGreaterThanOrEqualTo (line 490) | public Criteria andTitleGreaterThanOrEqualTo(String value) { method andTitleLessThan (line 495) | public Criteria andTitleLessThan(String value) { method andTitleLessThanOrEqualTo (line 500) | public Criteria andTitleLessThanOrEqualTo(String value) { method andTitleLike (line 505) | public Criteria andTitleLike(String value) { method andTitleNotLike (line 510) | public Criteria andTitleNotLike(String value) { method andTitleIn (line 515) | public Criteria andTitleIn(List values) { method andTitleNotIn (line 520) | public Criteria andTitleNotIn(List values) { method andTitleBetween (line 525) | public Criteria andTitleBetween(String value1, String value2) { method andTitleNotBetween (line 530) | public Criteria andTitleNotBetween(String value1, String value2) { method andGradeIsNull (line 535) | public Criteria andGradeIsNull() { method andGradeIsNotNull (line 540) | public Criteria andGradeIsNotNull() { method andGradeEqualTo (line 545) | public Criteria andGradeEqualTo(Date value) { method andGradeNotEqualTo (line 550) | public Criteria andGradeNotEqualTo(Date value) { method andGradeGreaterThan (line 555) | public Criteria andGradeGreaterThan(Date value) { method andGradeGreaterThanOrEqualTo (line 560) | public Criteria andGradeGreaterThanOrEqualTo(Date value) { method andGradeLessThan (line 565) | public Criteria andGradeLessThan(Date value) { method andGradeLessThanOrEqualTo (line 570) | public Criteria andGradeLessThanOrEqualTo(Date value) { method andGradeIn (line 575) | public Criteria andGradeIn(List values) { method andGradeNotIn (line 580) | public Criteria andGradeNotIn(List values) { method andGradeBetween (line 585) | public Criteria andGradeBetween(Date value1, Date value2) { method andGradeNotBetween (line 590) | public Criteria andGradeNotBetween(Date value1, Date value2) { method andCollegeidIsNull (line 595) | public Criteria andCollegeidIsNull() { method andCollegeidIsNotNull (line 600) | public Criteria andCollegeidIsNotNull() { method andCollegeidEqualTo (line 605) | public Criteria andCollegeidEqualTo(Integer value) { method andCollegeidNotEqualTo (line 610) | public Criteria andCollegeidNotEqualTo(Integer value) { method andCollegeidGreaterThan (line 615) | public Criteria andCollegeidGreaterThan(Integer value) { method andCollegeidGreaterThanOrEqualTo (line 620) | public Criteria andCollegeidGreaterThanOrEqualTo(Integer value) { method andCollegeidLessThan (line 625) | public Criteria andCollegeidLessThan(Integer value) { method andCollegeidLessThanOrEqualTo (line 630) | public Criteria andCollegeidLessThanOrEqualTo(Integer value) { method andCollegeidIn (line 635) | public Criteria andCollegeidIn(List values) { method andCollegeidNotIn (line 640) | public Criteria andCollegeidNotIn(List values) { method andCollegeidBetween (line 645) | public Criteria andCollegeidBetween(Integer value1, Integer value2) { method andCollegeidNotBetween (line 650) | public Criteria andCollegeidNotBetween(Integer value1, Integer value... class Criteria (line 656) | public static class Criteria extends GeneratedCriteria { method Criteria (line 658) | protected Criteria() { class Criterion (line 663) | public static class Criterion { method getCondition (line 680) | public String getCondition() { method getValue (line 684) | public Object getValue() { method getSecondValue (line 688) | public Object getSecondValue() { method isNoValue (line 692) | public boolean isNoValue() { method isSingleValue (line 696) | public boolean isSingleValue() { method isBetweenValue (line 700) | public boolean isBetweenValue() { method isListValue (line 704) | public boolean isListValue() { method getTypeHandler (line 708) | public String getTypeHandler() { method Criterion (line 712) | protected Criterion(String condition) { method Criterion (line 719) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 731) | protected Criterion(String condition, Object value) { method Criterion (line 735) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 744) | protected Criterion(String condition, Object value, Object secondVal... FILE: src/main/java/com/system/po/Userlogin.java class Userlogin (line 3) | public class Userlogin { method getUserid (line 12) | public Integer getUserid() { method setUserid (line 16) | public void setUserid(Integer userid) { method getUsername (line 20) | public String getUsername() { method setUsername (line 24) | public void setUsername(String username) { method getPassword (line 28) | public String getPassword() { method setPassword (line 32) | public void setPassword(String password) { method getRole (line 36) | public Integer getRole() { method setRole (line 40) | public void setRole(Integer role) { FILE: src/main/java/com/system/po/UserloginCustom.java class UserloginCustom (line 6) | public class UserloginCustom extends Userlogin { method setRole (line 10) | public void setRole(Role role) { method getRole_ob (line 14) | public Role getRole_ob() { FILE: src/main/java/com/system/po/UserloginExample.java class UserloginExample (line 6) | public class UserloginExample { method UserloginExample (line 13) | public UserloginExample() { method setOrderByClause (line 17) | public void setOrderByClause(String orderByClause) { method getOrderByClause (line 21) | public String getOrderByClause() { method setDistinct (line 25) | public void setDistinct(boolean distinct) { method isDistinct (line 29) | public boolean isDistinct() { method getOredCriteria (line 33) | public List getOredCriteria() { method or (line 37) | public void or(Criteria criteria) { method or (line 41) | public Criteria or() { method createCriteria (line 47) | public Criteria createCriteria() { method createCriteriaInternal (line 55) | protected Criteria createCriteriaInternal() { method clear (line 60) | public void clear() { class GeneratedCriteria (line 66) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 69) | protected GeneratedCriteria() { method isValid (line 74) | public boolean isValid() { method getAllCriteria (line 78) | public List getAllCriteria() { method getCriteria (line 82) | public List getCriteria() { method addCriterion (line 86) | protected void addCriterion(String condition) { method addCriterion (line 93) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 100) | protected void addCriterion(String condition, Object value1, Object ... method andUseridIsNull (line 107) | public Criteria andUseridIsNull() { method andUseridIsNotNull (line 112) | public Criteria andUseridIsNotNull() { method andUseridEqualTo (line 117) | public Criteria andUseridEqualTo(Integer value) { method andUseridNotEqualTo (line 122) | public Criteria andUseridNotEqualTo(Integer value) { method andUseridGreaterThan (line 127) | public Criteria andUseridGreaterThan(Integer value) { method andUseridGreaterThanOrEqualTo (line 132) | public Criteria andUseridGreaterThanOrEqualTo(Integer value) { method andUseridLessThan (line 137) | public Criteria andUseridLessThan(Integer value) { method andUseridLessThanOrEqualTo (line 142) | public Criteria andUseridLessThanOrEqualTo(Integer value) { method andUseridIn (line 147) | public Criteria andUseridIn(List values) { method andUseridNotIn (line 152) | public Criteria andUseridNotIn(List values) { method andUseridBetween (line 157) | public Criteria andUseridBetween(Integer value1, Integer value2) { method andUseridNotBetween (line 162) | public Criteria andUseridNotBetween(Integer value1, Integer value2) { method andUsernameIsNull (line 167) | public Criteria andUsernameIsNull() { method andUsernameIsNotNull (line 172) | public Criteria andUsernameIsNotNull() { method andUsernameEqualTo (line 177) | public Criteria andUsernameEqualTo(String value) { method andUsernameNotEqualTo (line 182) | public Criteria andUsernameNotEqualTo(String value) { method andUsernameGreaterThan (line 187) | public Criteria andUsernameGreaterThan(String value) { method andUsernameGreaterThanOrEqualTo (line 192) | public Criteria andUsernameGreaterThanOrEqualTo(String value) { method andUsernameLessThan (line 197) | public Criteria andUsernameLessThan(String value) { method andUsernameLessThanOrEqualTo (line 202) | public Criteria andUsernameLessThanOrEqualTo(String value) { method andUsernameLike (line 207) | public Criteria andUsernameLike(String value) { method andUsernameNotLike (line 212) | public Criteria andUsernameNotLike(String value) { method andUsernameIn (line 217) | public Criteria andUsernameIn(List values) { method andUsernameNotIn (line 222) | public Criteria andUsernameNotIn(List values) { method andUsernameBetween (line 227) | public Criteria andUsernameBetween(String value1, String value2) { method andUsernameNotBetween (line 232) | public Criteria andUsernameNotBetween(String value1, String value2) { method andPasswordIsNull (line 237) | public Criteria andPasswordIsNull() { method andPasswordIsNotNull (line 242) | public Criteria andPasswordIsNotNull() { method andPasswordEqualTo (line 247) | public Criteria andPasswordEqualTo(String value) { method andPasswordNotEqualTo (line 252) | public Criteria andPasswordNotEqualTo(String value) { method andPasswordGreaterThan (line 257) | public Criteria andPasswordGreaterThan(String value) { method andPasswordGreaterThanOrEqualTo (line 262) | public Criteria andPasswordGreaterThanOrEqualTo(String value) { method andPasswordLessThan (line 267) | public Criteria andPasswordLessThan(String value) { method andPasswordLessThanOrEqualTo (line 272) | public Criteria andPasswordLessThanOrEqualTo(String value) { method andPasswordLike (line 277) | public Criteria andPasswordLike(String value) { method andPasswordNotLike (line 282) | public Criteria andPasswordNotLike(String value) { method andPasswordIn (line 287) | public Criteria andPasswordIn(List values) { method andPasswordNotIn (line 292) | public Criteria andPasswordNotIn(List values) { method andPasswordBetween (line 297) | public Criteria andPasswordBetween(String value1, String value2) { method andPasswordNotBetween (line 302) | public Criteria andPasswordNotBetween(String value1, String value2) { method andRoleIsNull (line 307) | public Criteria andRoleIsNull() { method andRoleIsNotNull (line 312) | public Criteria andRoleIsNotNull() { method andRoleEqualTo (line 317) | public Criteria andRoleEqualTo(Integer value) { method andRoleNotEqualTo (line 322) | public Criteria andRoleNotEqualTo(Integer value) { method andRoleGreaterThan (line 327) | public Criteria andRoleGreaterThan(Integer value) { method andRoleGreaterThanOrEqualTo (line 332) | public Criteria andRoleGreaterThanOrEqualTo(Integer value) { method andRoleLessThan (line 337) | public Criteria andRoleLessThan(Integer value) { method andRoleLessThanOrEqualTo (line 342) | public Criteria andRoleLessThanOrEqualTo(Integer value) { method andRoleIn (line 347) | public Criteria andRoleIn(List values) { method andRoleNotIn (line 352) | public Criteria andRoleNotIn(List values) { method andRoleBetween (line 357) | public Criteria andRoleBetween(Integer value1, Integer value2) { method andRoleNotBetween (line 362) | public Criteria andRoleNotBetween(Integer value1, Integer value2) { class Criteria (line 368) | public static class Criteria extends GeneratedCriteria { method Criteria (line 370) | protected Criteria() { class Criterion (line 375) | public static class Criterion { method getCondition (line 392) | public String getCondition() { method getValue (line 396) | public Object getValue() { method getSecondValue (line 400) | public Object getSecondValue() { method isNoValue (line 404) | public boolean isNoValue() { method isSingleValue (line 408) | public boolean isSingleValue() { method isBetweenValue (line 412) | public boolean isBetweenValue() { method isListValue (line 416) | public boolean isListValue() { method getTypeHandler (line 420) | public String getTypeHandler() { method Criterion (line 424) | protected Criterion(String condition) { method Criterion (line 431) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 443) | protected Criterion(String condition, Object value) { method Criterion (line 447) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 456) | protected Criterion(String condition, Object value, Object secondVal... FILE: src/main/java/com/system/realm/LoginRealm.java class LoginRealm (line 24) | @Component method doGetAuthorizationInfo (line 37) | protected AuthorizationInfo doGetAuthorizationInfo(PrincipalCollection... method doGetAuthenticationInfo (line 65) | protected AuthenticationInfo doGetAuthenticationInfo(AuthenticationTok... FILE: src/main/java/com/system/service/CollegeService.java type CollegeService (line 10) | public interface CollegeService { method finAll (line 12) | List finAll() throws Exception; FILE: src/main/java/com/system/service/CourseService.java type CourseService (line 10) | public interface CourseService { method upadteById (line 12) | void upadteById(Integer id, CourseCustom courseCustom) throws Exception; method removeById (line 15) | Boolean removeById(Integer id) throws Exception; method findByPaging (line 18) | List findByPaging(Integer toPageNo) throws Exception; method save (line 21) | Boolean save(CourseCustom couseCustom) throws Exception; method getCountCouse (line 24) | int getCountCouse() throws Exception; method findById (line 27) | CourseCustom findById(Integer id) throws Exception; method findByName (line 30) | List findByName(String name) throws Exception; method findByTeacherID (line 33) | List findByTeacherID(Integer id) throws Exception; FILE: src/main/java/com/system/service/RoleService.java type RoleService (line 8) | public interface RoleService { method findByid (line 10) | Role findByid(Integer id) throws Exception; FILE: src/main/java/com/system/service/SelectedCourseService.java type SelectedCourseService (line 11) | public interface SelectedCourseService { method findByCourseID (line 14) | List findByCourseID(Integer id) throws Exception; method findByCourseIDPaging (line 17) | List findByCourseIDPaging(Integer page, Integer ... method countByCourseID (line 20) | Integer countByCourseID(Integer id) throws Exception; method findOne (line 23) | SelectedCourseCustom findOne(SelectedCourseCustom selectedCourseCustom... method updataOne (line 26) | void updataOne(SelectedCourseCustom selectedCourseCustom) throws Excep... method save (line 29) | void save(SelectedCourseCustom selectedCourseCustom) throws Exception; method findByStudentID (line 32) | List findByStudentID(Integer id) throws Exception; method remove (line 35) | void remove(SelectedCourseCustom selectedCourseCustom) throws Exception; FILE: src/main/java/com/system/service/StudentService.java type StudentService (line 10) | public interface StudentService { method updataById (line 13) | void updataById(Integer id, StudentCustom studentCustom) throws Except... method removeById (line 16) | void removeById(Integer id) throws Exception; method findByPaging (line 19) | List findByPaging(Integer toPageNo) throws Exception; method save (line 22) | Boolean save(StudentCustom studentCustoms) throws Exception; method getCountStudent (line 25) | int getCountStudent() throws Exception; method findById (line 28) | StudentCustom findById(Integer id) throws Exception; method findByName (line 31) | List findByName(String name) throws Exception; method findStudentAndSelectCourseListByName (line 34) | StudentCustom findStudentAndSelectCourseListByName(String name) throws... FILE: src/main/java/com/system/service/TeacherService.java type TeacherService (line 12) | public interface TeacherService { method updateById (line 15) | void updateById(Integer id, TeacherCustom teacherCustom) throws Except... method removeById (line 18) | void removeById(Integer id) throws Exception; method findByPaging (line 21) | List findByPaging(Integer toPageNo) throws Exception; method save (line 24) | Boolean save(TeacherCustom teacherCustom) throws Exception; method getCountTeacher (line 27) | int getCountTeacher() throws Exception; method findById (line 30) | TeacherCustom findById(Integer id) throws Exception; method findByName (line 33) | List findByName(String name) throws Exception; method findAll (line 36) | List findAll() throws Exception; FILE: src/main/java/com/system/service/UserloginService.java type UserloginService (line 9) | public interface UserloginService { method findByName (line 12) | Userlogin findByName(String name) throws Exception; method save (line 15) | void save(Userlogin userlogin) throws Exception; method removeByName (line 18) | void removeByName(String name) throws Exception; method updateByName (line 21) | void updateByName(String name, Userlogin userlogin); FILE: src/main/java/com/system/service/impl/CollegeServiceImpl.java class CollegeServiceImpl (line 15) | @Service method finAll (line 21) | public List finAll() throws Exception { FILE: src/main/java/com/system/service/impl/CourseServiceImpl.java class CourseServiceImpl (line 19) | @Service method upadteById (line 34) | public void upadteById(Integer id, CourseCustom courseCustom) throws E... method removeById (line 38) | public Boolean removeById(Integer id) throws Exception { method findByPaging (line 53) | public List findByPaging(Integer toPageNo) throws Except... method save (line 61) | public Boolean save(CourseCustom couseCustom) throws Exception { method getCountCouse (line 70) | public int getCountCouse() throws Exception { method findById (line 80) | public CourseCustom findById(Integer id) throws Exception { method findByName (line 91) | public List findByName(String name) throws Exception { method findByTeacherID (line 119) | public List findByTeacherID(Integer id) throws Exception { FILE: src/main/java/com/system/service/impl/RoleServiceImpl.java class RoleServiceImpl (line 12) | @Service method findByid (line 18) | public Role findByid(Integer id) throws Exception { FILE: src/main/java/com/system/service/impl/SelectedCourseServiceImpl.java class SelectedCourseServiceImpl (line 19) | @Service method findByCourseID (line 32) | public List findByCourseID(Integer id) throws Ex... method findByCourseIDPaging (line 59) | public List findByCourseIDPaging(Integer page, I... method countByCourseID (line 64) | public Integer countByCourseID(Integer id) throws Exception { method findOne (line 73) | public SelectedCourseCustom findOne(SelectedCourseCustom selectedCours... method updataOne (line 100) | public void updataOne(SelectedCourseCustom selectedCourseCustom) throw... method save (line 111) | public void save(SelectedCourseCustom selectedCourseCustom) throws Exc... method findByStudentID (line 115) | public List findByStudentID(Integer id) throws E... method remove (line 119) | public void remove(SelectedCourseCustom selectedCourseCustom) throws E... FILE: src/main/java/com/system/service/impl/StudentServiceImpl.java class StudentServiceImpl (line 18) | @Service method updataById (line 31) | public void updataById(Integer id, StudentCustom studentCustom) throws... method removeById (line 35) | public void removeById(Integer id) throws Exception { method findByPaging (line 39) | public List findByPaging(Integer toPageNo) throws Excep... method save (line 48) | public Boolean save(StudentCustom studentCustoms) throws Exception { method getCountStudent (line 59) | public int getCountStudent() throws Exception { method findById (line 69) | public StudentCustom findById(Integer id) throws Exception { method findByName (line 83) | public List findByName(String name) throws Exception { method findStudentAndSelectCourseListByName (line 112) | public StudentCustom findStudentAndSelectCourseListByName(String name)... FILE: src/main/java/com/system/service/impl/TeacherServiceImpl.java class TeacherServiceImpl (line 20) | @Service method updateById (line 35) | public void updateById(Integer id, TeacherCustom teacherCustom) throws... method removeById (line 39) | public void removeById(Integer id) throws Exception { method findByPaging (line 53) | public List findByPaging(Integer toPageNo) throws Excep... method save (line 62) | public Boolean save(TeacherCustom teacherCustom) throws Exception { method getCountTeacher (line 72) | public int getCountTeacher() throws Exception { method findById (line 82) | public TeacherCustom findById(Integer id) throws Exception { method findByName (line 93) | public List findByName(String name) throws Exception { method findAll (line 121) | public List findAll() throws Exception { FILE: src/main/java/com/system/service/impl/UserloginServiceImpl.java class UserloginServiceImpl (line 15) | @Service method findByName (line 22) | public Userlogin findByName(String name) throws Exception { method save (line 33) | public void save(Userlogin userlogin) throws Exception { method removeByName (line 37) | public void removeByName(String name) throws Exception { method updateByName (line 46) | public void updateByName(String name, Userlogin userlogin) { FILE: src/main/webapp/js/bootstrap.js function transitionEnd (line 34) | function transitionEnd() { function removeElement (line 126) | function removeElement() { function Plugin (line 142) | function Plugin(option) { function Plugin (line 251) | function Plugin(option) { function Plugin (line 475) | function Plugin(option) { function getTargetFromTrigger (line 695) | function getTargetFromTrigger($trigger) { function Plugin (line 707) | function Plugin(option) { function getParent (line 774) | function getParent($this) { function clearMenus (line 787) | function clearMenus(e) { function Plugin (line 880) | function Plugin(option) { function Plugin (line 1208) | function Plugin(option, _relatedTarget) { function complete (line 1574) | function complete() { function Plugin (line 1750) | function Plugin(option) { function Plugin (line 1859) | function Plugin(option) { function ScrollSpy (line 1902) | function ScrollSpy(element, options) { function Plugin (line 2022) | function Plugin(option) { function next (line 2131) | function next() { function Plugin (line 2177) | function Plugin(option) { function Plugin (line 2334) | function Plugin(option) { FILE: src/test/test/com/system/mapper/CourseMapperCustomTest.java class CourseMapperCustomTest (line 18) | public class CourseMapperCustomTest { method setUp (line 21) | @Before method findByPaging (line 26) | @Test FILE: src/test/test/com/system/mapper/StudentMapperCustomTest.java class StudentMapperCustomTest (line 18) | public class StudentMapperCustomTest { method setUp (line 23) | @Before method findByPaging (line 28) | @Test method findStudentAndSelectCourseListByName (line 41) | @Test FILE: src/test/test/com/system/mapper/StudentMapperTest.java class StudentMapperTest (line 18) | public class StudentMapperTest { method setUp (line 22) | @Before method selectByExample (line 28) | @Test FILE: src/test/test/com/system/mapper/TeacherMapperCustomTest.java class TeacherMapperCustomTest (line 18) | public class TeacherMapperCustomTest { method setUp (line 21) | @Before method findByPaging (line 26) | @Test FILE: src/test/test/com/system/mapper/UserloginMapperCustomTest.java class UserloginMapperCustomTest (line 13) | public class UserloginMapperCustomTest { method setUp (line 17) | @Before method testFindOne (line 22) | @Test FILE: src/test/test/com/system/service/impl/CourseServiceImplTest.java class CourseServiceImplTest (line 16) | public class CourseServiceImplTest { method setUp (line 21) | @Before method findById (line 27) | @Test method findByTeacherID (line 37) | @Test FILE: src/test/test/com/system/service/impl/SelectedCourseServiceImplTest.java class SelectedCourseServiceImplTest (line 18) | public class SelectedCourseServiceImplTest { method setUp (line 23) | @Before method findByCourseID (line 29) | @Test FILE: src/test/test/com/system/service/impl/StudentServiceImplTest.java class StudentServiceImplTest (line 22) | public class StudentServiceImplTest { method setUp (line 27) | @Before method updataById (line 33) | @Test method removeById (line 54) | @Test method findByPaging (line 60) | @Test method save (line 67) | @Test method getCountStudent (line 88) | @Test method findById (line 95) | @Test method findByName (line 103) | @Test FILE: src/test/test/com/system/service/impl/TeacherServiceImplTest.java class TeacherServiceImplTest (line 20) | public class TeacherServiceImplTest { method setUp (line 24) | @Before method updateById (line 31) | @Test method removeById (line 52) | @Test method findByPaging (line 57) | @Test method save (line 63) | @Test method getCountTeacher (line 83) | @Test method findById (line 89) | @Test method findByName (line 96) | @Test method findAll (line 102) | @Test FILE: src/test/test/com/system/service/impl/UserloginServiceImplTest.java class UserloginServiceImplTest (line 16) | public class UserloginServiceImplTest { method setUp (line 21) | @Before method findByName (line 28) | @Test