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

com.haoxuer.discover.user.data.dao.UserFeedBackDao Maven / Gradle / Ivy

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


import com.haoxuer.discover.user.data.entity.UserFeedBack;
import com.haoxuer.discover.data.core.BaseDao;
import com.haoxuer.discover.data.core.Updater;

/**
 * Created by imake on 2017年11月14日18:38:15.
 */
public interface UserFeedBackDao extends BaseDao {
  
  UserFeedBack findById(Long id);
  
  UserFeedBack save(UserFeedBack bean);
  
  UserFeedBack updateByUpdater(Updater updater);
  
  UserFeedBack deleteById(Long id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy