| | |
| | | import cn.gistack.sm.sg.DO.SgGxStepDO; |
| | | import cn.gistack.sm.sg.DTO.ProjectSearchDTO; |
| | | import cn.gistack.sm.sg.VO.SgGxVO; |
| | | import cn.gistack.system.user.vo.UserVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | */ |
| | | public interface SgGxMapper extends BaseMapper<SgGxDO> { |
| | | |
| | | List<SgGxVO> queryPageList(@Param("dto") ProjectSearchDTO dto); |
| | | List<SgGxVO> queryPageList(IPage<SgGxVO> page, @Param("dto") ProjectSearchDTO dto); |
| | | |
| | | List<SgGxStepDO> queryStepByIds(@Param("ids") List<Long> ids); |
| | | |
| | | SgGxDO selectByGxType(@Param("gxType") String gxType); |
| | | |
| | | SgGxVO getById(@Param("id") Long id); |
| | | } |