package com.nis.web.dao; import java.util.List; import java.util.Map; import com.nis.domain.SysOffice; @MyBatisDao public interface SysOfficeDao extends TreeDao { int deleteByPrimaryKey(Integer id); int insert(SysOffice record); int insertSelective(SysOffice record); SysOffice selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(SysOffice record); int updateByPrimaryKey(SysOffice record); List selectSysOffice(SysOffice sysOffice); List selectLowerDeptement(Map hmap); List selectOfficeForDeptment(Map map); List selectOfficeForLetter(Map hmap); }