package com.lyms.cm.service.sys; import com.lyms.cm.entity.sys.SysUsers; import com.lyms.exception.SystemException; import com.lyms.web.service.BaseService; /** *
* 用户服务类 *
* * @author maliang * @since 2017-03-02 */ public interface SysUsersService extends BaseService* 根据用户ID操作 *
* * @param userId * @return * @author maliang */ public boolean enabled(String userId) throws SystemException; /** * 删除用户信息 * * @param userId * @return * @throws SystemException */ public boolean delete(String userId) throws SystemException; }