| | |
| | | package cn.gistack.sm.sg.service; |
| | | |
| | | import cn.gistack.sm.sg.DO.SgGxRoleDO; |
| | | import cn.gistack.sm.sg.DO.SgGxStepDO; |
| | | import cn.gistack.sm.sg.DTO.ProjectSearchDTO; |
| | | import cn.gistack.sm.sg.VO.SgGxRoleVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | void delete(String id); |
| | | |
| | | IPage<SgGxStepDO> queryPageList(IPage<SgGxStepDO> page, @Param("dto") ProjectSearchDTO searchDTO); |
| | | |
| | | |
| | | /** |
| | | * 新增绑定的角色 |
| | | * @param sgGxRoleVO |
| | | */ |
| | | void insertSgGxRole(SgGxRoleVO sgGxRoleVO); |
| | | |
| | | /** |
| | | * 更新绑定的角色 |
| | | * @param sgGxRoleVO |
| | | */ |
| | | void updateSgGxRole(SgGxRoleVO sgGxRoleVO); |
| | | |
| | | /** |
| | | * 获取绑定的角色 |
| | | * @param gxDeviceType |
| | | * @param gxStepId |
| | | * @return |
| | | */ |
| | | List<String> getSgGxRoles(String gxDeviceType, String gxStepId); |
| | | } |