Examples of TeacherEntity


Examples of org.jeecgframework.web.demo.entity.test.TeacherEntity

   *@date 2013-11-10
   */
  private void repairExcel() {
    CourseEntity course = new CourseEntity();
    course.setName("海贼王");
    TeacherEntity teacher = new TeacherEntity();
    teacher.setName("路飞");
    teacher.setPic("upload/Teacher/pic3345280233.PNG");
    course.setTeacher(teacher);
    List<StudentEntity> list = new ArrayList<StudentEntity>();
    StudentEntity student = new StudentEntity();
    student.setName("卓洛");
    student.setSex("0");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.