KlService.java
302 Bytes
package com.bsth.service.Kl;
import com.bsth.entity.Kl;
import com.bsth.entity.logger.Logger_MileModify;
import com.bsth.service.BaseService;
import java.util.List;
import java.util.Map;
public interface KlService {
Map<String, Object> query(Map<String, Object> map);
List<Kl> loadKl();
}