|
|
@@ -13,18 +13,19 @@ import org.springblade.business.vo.StandardInfoVO;
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
|
-* @author LHB
|
|
|
-* @description 针对表【u_standard_info(规范参数管理-基础信息)】的数据库操作Mapper
|
|
|
-* @createDate 2025-06-11 09:57:39
|
|
|
-* @Entity org.springblade.business.entity.UStandardInfo
|
|
|
-*/
|
|
|
+ * @author LHB
|
|
|
+ * @description 针对表【u_standard_info(规范参数管理-基础信息)】的数据库操作Mapper
|
|
|
+ * @createDate 2025-06-11 09:57:39
|
|
|
+ * @Entity org.springblade.business.entity.UStandardInfo
|
|
|
+ */
|
|
|
public interface StandardInfoMapper extends BaseMapper<StandardInfo> {
|
|
|
|
|
|
IPage<StandardInfoDTO> selectMyPage(Page<StandardInfoDTO> page, @Param("query") StandardInfo standardInfo);
|
|
|
|
|
|
StandardInfoDTO selectMyOne(@Param("id") Long id);
|
|
|
|
|
|
- List<StandardInfoVO> getConditionSet(@Param("id") Long id);
|
|
|
+ List<StandardInfoVO> getConditionSet(@Param("id") Long id,
|
|
|
+ @Param("leftId") Long leftId);
|
|
|
|
|
|
List<StandardInfoPrivateJoinVO> getElementJoin(@Param("id") Long id);
|
|
|
|