package com.cmsz.ws;

import java.util.List;

import com.cmsz.vo.DepartmentVO;


public interface DepartmentService{

	/*查询部门列表*/
	public List<DepartmentVO> queryDepartment (String departmentId);

}