InvestigateService.java
544 Bytes
package com.project.demo.service;
import com.project.demo.domain.Investigate;
import java.util.List;
import java.util.Map;
/**
* Created by bert on 2018/7/5.
*/
public interface InvestigateService {
List<Investigate> search(Map<String, Object> params);
void save(Investigate investigate);
Investigate searchDetails(Integer companyId);
Investigate findById(Integer id);
List<Integer> usersInvestigate(Integer usersId);
List<Investigate> findByUserId(Integer usersId);
List<Integer> salesMan(Integer id);
}