Logo

GitLab

Sign in

徐文豪 / project_management

  • Back to Dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • project_management
  • ..
  • service
  • InvestigateService.java
  • [task #666]给联通
    359a6d6f
    徐文豪 authored
    2018-07-09 15:42:40 +0800  
    Browse Dir »
InvestigateService.java 309 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
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);
}