summaryrefslogtreecommitdiff
path: root/src/main/java/com/nis/service/ConfEventService.java
blob: c28cfc2827511df041f847e77b3e8786d4e2fb65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.nis.service;

import java.util.List;
import java.util.Map;

import com.nis.entity.ConfEvent;

public interface ConfEventService {
	
	public Map<String,Integer> queryConfEventMap();
	
	/**
	 * 
	 */
	public boolean compareData(Map<String,Integer> map);
}