All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.quhaodian.notice.data.service.UserNotificationNumService Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.quhaodian.notice.data.service;

import com.quhaodian.data.page.Filter;
import com.quhaodian.data.page.Order;
import com.quhaodian.data.page.Page;
import com.quhaodian.data.page.Pageable;
import com.quhaodian.notice.data.entity.UserNotificationNum;
import java.util.List;

/**
 * Created by imake on 2018年01月02日11:12:13.
 */
public interface UserNotificationNumService {
  
  UserNotificationNum findById(Long id);
  
  UserNotificationNum save(UserNotificationNum bean);
  
  UserNotificationNum update(UserNotificationNum bean);
  
  UserNotificationNum deleteById(Long id);
  
  UserNotificationNum[] deleteByIds(Long[] ids);
  
  Page page(Pageable pageable);
  
  Page page(Pageable pageable, Object search);
  
  
  List list(int first, Integer size, List filters, List orders);
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy