26-03-14-20:46 通过平台id获取平台下所有组件

This commit is contained in:
MHW
2026-03-14 20:46:49 +08:00
parent c1c67e826b
commit f72105134f
6 changed files with 44 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
package com.solution.rule.mapper;
import com.solution.rule.domain.PlatformComponent;
import com.solution.rule.domain.vo.ComponentCountVO;
import com.solution.rule.domain.vo.PlatformComponentNamesVO;
import com.solution.rule.domain.vo.WeaponModelVO;
@@ -32,4 +33,10 @@ public interface FireRuleMapper {
List<PlatformComponentNamesVO> getCommPlatformComponentNames(Integer scenarioId);
/**
* 根据平台id获取平台下所有组件
* @param platformId
* @return
*/
List<PlatformComponent> getComponents(Integer platformId);
}