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 #xwn-710]通知模块增加文件上传下载功能
    9a28eb58
    徐文豪 authored
    2018-07-23 14:01:31 +0800  
    Browse Dir »
InformService.java 312 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
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);

    Inform findById(Integer id);
}