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
  • InformService.java
  • [task #666]给联通
    359a6d6f
    徐文豪 authored
    2018-07-09 15:42:40 +0800  
    Browse Dir »
InformService.java 278 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.project.demo.service;

import com.project.demo.domain.Inform;

import java.util.List;

/**
 * Created by xuwenhao on 2018/7/8.
 */
public interface InformService {
    List<Inform> search();

    void deleteInform(Integer id);

    void saveInform(Inform inform);
}