20 lines
412 B
Java
20 lines
412 B
Java
package com.solution.rule.mapper;
|
|
|
|
import com.solution.rule.domain.dto.WeaponModelDTO;
|
|
import com.solution.rule.domain.vo.WeaponModelVO;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
|
|
@Mapper
|
|
public interface RuleMapper {
|
|
|
|
/**
|
|
* 获取所有武器平台和组件
|
|
* @return
|
|
*/
|
|
List<WeaponModelVO> getWeapon();
|
|
|
|
List<WeaponModelVO> getPlatformComponentNames();
|
|
}
|