InvestigateService.java
309 Bytes
package com.project.demo.service;
import com.project.demo.domain.Investigate;
import java.util.List;
/**
* Created by bert on 2018/7/5.
*/
public interface InvestigateService {
List<Investigate> search();
void save(Investigate investigate);
Investigate searchDetails(Integer companyId);
}