首页>代码>Spring整合DWR实例>/DWRSpring/src/services/DeptServices.java
package services;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import entity.Dept;

@SuppressWarnings("unchecked")
public class DeptServices {

    public List<?> findDept() {
        throw new RuntimeException("查找失败!");
    }

    public void deleteDept(Long id) {
        System.out.println("Delete dept " + id);
    }

    public List<Dept> getDeptsForPo() {
        List<Dept> depts = new ArrayList<Dept>();
        depts.add(new Dept(1l, "教质部"));
        depts.add(new Dept(2l, "学术部"));
        depts.add(new Dept(3l, "就业部"));
        depts.add(new Dept(4l, "咨询部"));
        return depts;
    }

    
    public void saveDept(List<Dept> depts) {
        // System.out.println(dept.getId() + ":" + dept.getName());
        System.out.println(depts);
    }

    public List<Map<String, String>> getDepts() {
        List<Map<String, String>> depts = new ArrayList<Map<String, String>>();
        Map<String, String> map = new HashMap<String, String>();
        map.put("id", "01");
        map.put("name", "教质部");
        depts.add(map);

        map = new HashMap<String, String>();
        map.put("id", "02");
        map.put("name", "学术部");
        depts.add(map);

        map = new HashMap<String, String>();
        map.put("id", "03");
        map.put("name", "就业部");
        depts.add(map);

        map = new HashMap<String, String>();
        map.put("id", "04");
        map.put("name", "咨询部");
        depts.add(map);
        try {
            Thread.sleep(1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        return depts;
    }
}
最近下载更多
sen8210208  LV2 2020年7月31日
stoneme123  LV1 2020年3月30日
zlhilaq  LV10 2019年4月15日
风间千月  LV13 2018年12月11日
网兜兜网  LV2 2018年12月6日
zhangyan642157981  LV3 2018年11月15日
as593112949  LV1 2018年1月9日
aystno1  LV3 2017年11月21日
执守青莲待倾颜  LV5 2017年11月14日
蓝色经典梦  LV2 2017年9月22日
最近浏览更多
sizeking  LV8 2021年4月12日
zzuljh  LV9 2021年1月26日
sen8210208  LV2 2020年7月31日
桃子1111112345  LV9 2020年6月8日
chokkint  LV12 2020年5月20日
krtttt  LV2 2020年4月28日
stoneme123  LV1 2020年3月30日
zyl  LV34 2019年8月27日
1701863120  LV2 2019年8月27日
ldc199375  LV10 2019年6月26日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友