|
@@ -109,15 +109,15 @@ public class ClientAllEventServiceImpl implements IClientAllEventService {
|
|
|
|
|
|
//熏蒸事件
|
|
|
private R getFumigateChannel(Map paramsMap) throws ClientException {
|
|
|
- //绑定大门通道
|
|
|
- String[] fumigateChannel = CommonConstant.FUMIGATE_CHANNEL;
|
|
|
+ //绑定熏蒸通道
|
|
|
+ String[] fumigateChannel = CommonConstant.XunZhengChannle;
|
|
|
return R.ok("请求成功").put("data", getEventList(paramsMap, fumigateChannel)).put("total", CountTimes(paramsMap, fumigateChannel)).put("isVideo",true);
|
|
|
}
|
|
|
|
|
|
//卖猪事件
|
|
|
private R getSellPigsChannel(Map paramsMap) throws ClientException {
|
|
|
//卖猪通道
|
|
|
- String[] sellPigsChannel = CommonConstant.SELL_PIGS_CHANNEL;
|
|
|
+ String[] sellPigsChannel = CommonConstant.MaiZhuChannle;
|
|
|
return R.ok("请求成功").put("data", getEventList(paramsMap, sellPigsChannel)).put("total", CountTimes(paramsMap, sellPigsChannel)).put("isVideo",true);
|
|
|
}
|
|
|
|