package com.lyms.cm.service.sys;
import java.io.Serializable;
import com.lyms.cm.entity.sys.SysOrganGroup;
import com.lyms.exception.SystemException;
import com.lyms.web.service.BaseService;
/**
*
* 服务类
*
*
* @author maliang
* @since 2017-03-09
*/
public interface SysOrganGroupService extends BaseService {
/**
* @Description:逻辑删除,ifDel = 1 为删除,否则为没有删除
* @param id 删除主键id
* @return 大于0修改成功,否则为失败
*/
public Integer deleteLogicById(Serializable id);
/**
* @Description:创建机构组
* @param organGroup
* @return
* @throws SystemException
* 创建人:maliang
* 创建时间:2017年3月9日
* 修改人:
* 修改时间:
*/
public boolean create(SysOrganGroup organGroup) throws SystemException;
/**
* @Description:根据ID删除机构信息
* @param groupId
* @return
* @throws SystemException
* 创建人:maliang
* 创建时间:2017年3月9日
* 修改人:
* 修改时间:
*/
public boolean deleteGroupById(String groupId) throws SystemException;
/**
* @Description:修改机构组信息
* @param organGrooup
* @return
* @throws SystemException
* 创建人:maliang
* 创建时间:2017年3月9日
* 修改人:
* 修改时间:
*/
public boolean updateGroup(SysOrganGroup organGrooup) throws SystemException;
}