Blame view

src/main/java/com/xkl/service/IReportService.java 555 Bytes
1 2
package com.xkl.service;
zhaoyue authored
3
import com.xkl.domain.XklAdminEntity;
zhaoyue authored
4 5
import com.xkl.model.ResultModel;
import org.springframework.http.ResponseEntity;
6 7 8 9 10

/**
 * Created by zhao yue on 2016/11/26.
 */
public interface IReportService {
zhaoyue authored
11 12
//    public ReportData parseReport(String reportJson, String md5);
zhaoyue authored
13
//    public int saveReport(ReportData report, XklAdminEntity admin, User user);
zhaoyue authored
14
zhaoyue authored
15 16
    public ResponseEntity<ResultModel> delete(XklAdminEntity admin, long report_id);
    public ResponseEntity<ResultModel> save(XklAdminEntity admin, String json_report);
zhaoyue authored
17 18

19 20

}