40、尚硅谷_SpringBoot_web开发-【实验】-员工添加-来到添加页面

6)、CRUD-员工添加

@Controller
public class EmployeeCtrl {

    @Autowired
    EmployeeDao dao;
    @Autowired
    DepartmentDao departmentDao;
    //列出所有员工
    @GetMapping("/emps")
    public String list(Model model){
        Collection<Employee>   collection =  dao.getAll();
        model.addAttribute("emps",collection);
        return "employee/list";
    }


    //添加页面
    @GetMapping("/emp")
    public String addVide(Model model){
        //查询部门信息
        Collection<Department>  collection = departmentDao.getDepartments();
        model.addAttribute("deparms",collection);
        return "employee/add";
    }
}

添加页面

<body>
<div th:replace="commons/bar::nav"></div>

<div class="container-fluid"  >
	<div class="row">
        <div th:replace="commons/bar::#sidebar(activeUri='employee')"></div>

		<main role="main" class="col-md-9 ml-sm-auto col-lg-10 pt-3 px-4">
			<div class="table-responsive">
				<form>
					<div class="form-group">
						<label>LastName</label>
						<input type="text" class="form-control" placeholder="zhangsan">
					</div>
					<div class="form-group">
						<label>Email</label>
						<input type="email" class="form-control" placeholder="zhangsan@atguigu.com">
					</div>
					<div class="form-group">
						<label>Gender</label><br/>
						<div class="form-check form-check-inline">
							<input class="form-check-input" type="radio" name="gender"  value="1">
							<label class="form-check-label"></label>
						</div>
						<div class="form-check form-check-inline">
							<input class="form-check-input" type="radio" name="gender"  value="0">
							<label class="form-check-label"></label>
						</div>
					</div>
					<div class="form-group">
						<label>department</label>
						<select class="form-control">
							<option th:each="dep:${deparms}" th:value="${dep.id}" th:text="${dep.departmentName}">1</option>
						</select>
					</div>
					<div class="form-group">
						<label>Birth</label>
						<input type="text" class="form-control" placeholder="zhangsan">
					</div>
					<button type="submit" class="btn btn-primary">添加</button>
				</form>
			</div>
		</main>
	</div>
</div>
</body>
传统的实验室管理方式,积累量大,易出错,在实验室开放方面,学生很难查看实验室的空闲时段,管理员也很难为学生预备实验条件。在选择实验课方面,总是以班级或者专业为单位进行排课,使得教学缺乏自主化,人性化,而且往往会师生之间相互不了解而产生的盲目教学等情况,影响学生、老师的积极性,从而影响实验教学的效果。所以,需要开发一套开放实验实验预约系统来代替传统的管理方法。 开放实验室预约系统包含管理员放课子系统,老师排课子系统,学生选课子系统三块。在放课子系统中,管理员根据该学期的实际需要发放本学期的实验项目批次,同时管理员可以统计所有实验项目批次的选课情况。在排课子系统中,老师根据管理员发放的实验项目批次,确定实验的时间、地点、容纳人数等基本信息,同时老师可以查看自己排课情况。在选课子系统中,学生根据自己的实际情况和老师排课的基本情况来选择自己的实验项目批次,同时学生可以查询老师的信息,课程的信息和自己的课表。 系统采用B/S架构,符合操作简单,界面友好,灵活,实用,安全的要求,能够完成开放实验室预约管理的全过程。系统的最大特点就是打破了传统意义上的实验室管理方式,使得学生、老师在整个教学过程中更加自主,不断提高了两者的积极性,同时也提高了教与学的质量,提高了实验教学管理的效率。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值