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

com.haoxuer.discover.user.data.service.UserCodeService Maven / Gradle / Ivy

There is a newer version: 3.3.18-20230117
Show newest version
package com.haoxuer.discover.user.data.service;

import com.haoxuer.discover.data.page.Filter;
import com.haoxuer.discover.data.page.Order;
import com.haoxuer.discover.data.page.Page;
import com.haoxuer.discover.data.page.Pageable;
import com.haoxuer.discover.user.data.entity.UserCode;
import java.util.List;

/**
 * Created by imake on 2018年02月23日16:25:55.
 */
public interface UserCodeService {
  
  UserCode findById(Long id);
  
  UserCode save(UserCode bean);
  
  UserCode update(UserCode bean);
  
  UserCode deleteById(Long id);
  
  UserCode[] deleteByIds(Long[] ids);
  
  Page page(Pageable pageable);
  
  Page page(Pageable pageable, Object search);
  
  
  List list(int first, Integer size, List filters, List orders);
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy