|
@@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.ktg.common.mapper.BaseMapperX;
|
|
import com.ktg.common.mapper.BaseMapperX;
|
|
|
import com.ktg.iscs.domain.IsSop;
|
|
import com.ktg.iscs.domain.IsSop;
|
|
|
import com.ktg.iscs.domain.dto.sop.PageSopDTO;
|
|
import com.ktg.iscs.domain.dto.sop.PageSopDTO;
|
|
|
|
|
+import com.ktg.iscs.domain.vo.sop.SopDetailVO;
|
|
|
import com.ktg.iscs.domain.vo.sop.SopPageVO;
|
|
import com.ktg.iscs.domain.vo.sop.SopPageVO;
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.apache.ibatis.annotations.Param;
|
|
@@ -25,7 +26,7 @@ public interface IsSopMapper extends BaseMapperX<IsSop>
|
|
|
* @param sopId SOP信息主键
|
|
* @param sopId SOP信息主键
|
|
|
* @return SOP信息
|
|
* @return SOP信息
|
|
|
*/
|
|
*/
|
|
|
- IsSop selectIsSopBySopId(Long sopId);
|
|
|
|
|
|
|
+ SopDetailVO selectIsSopBySopId(Long sopId);
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 查询SOP信息列表
|
|
* 查询SOP信息列表
|
|
@@ -74,4 +75,5 @@ public interface IsSopMapper extends BaseMapperX<IsSop>
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
Page<SopPageVO> getIsSopPage(Page<IsSop> page, @Param(value = "dto") PageSopDTO dto);
|
|
Page<SopPageVO> getIsSopPage(Page<IsSop> page, @Param(value = "dto") PageSopDTO dto);
|
|
|
|
|
+
|
|
|
}
|
|
}
|