gonglilong
2024-06-14 a70a81b036cbcd8516ace15f3ae3c57e779d29f5
skjcmanager/skjcmanager-service/skjcmanager-sm/src/main/java/cn/gistack/sm/sg/mapper/SgGxMapper.java
@@ -4,7 +4,9 @@
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;
@@ -19,9 +21,11 @@
 */
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);
}