package com.landtool.lanbase.modules.org.service;
|
|
import com.landtool.lanbase.modules.org.entity.OrgUnit;
|
|
/**
|
* @author lanbase
|
* @Description: TODO(单位管理表)
|
* @date 2018-01-16 08:47:23
|
*/
|
public interface OrgUnitService {
|
|
OrgUnit queryObject(Long unitid);
|
|
String getUnitName(Long unitid);
|
|
OrgUnit getUnitById(Long unitid);
|
}
|