|
|
@@ -65,6 +65,7 @@ public class MachineManageAction implements IMINAction {
|
|
|
@MINAction(value = QUERY_PROEQUREL)
|
|
|
public MINActionResult queryProEquRel(
|
|
|
@MINParam(key = "equId") String equId,
|
|
|
+ @MINParam(key = "gameType") String gameType,
|
|
|
MINSession session
|
|
|
) throws MINBusinessException {
|
|
|
|
|
|
@@ -77,6 +78,7 @@ public class MachineManageAction implements IMINAction {
|
|
|
Map<String, String> map = new HashMap<String, String>();
|
|
|
map.put("channel", "V01");
|
|
|
map.put("equId", equId);
|
|
|
+ map.put("gameType", gameType);
|
|
|
List<Map<String, Object>> list = Service.lookup(IMINDataBaseService.class)
|
|
|
.getMybatisMapper(MachineManageMapper.class)
|
|
|
.queryProEquRel(map);
|