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

com.quhaodian.userfriend.data.dao.UserFollowDao Maven / Gradle / Ivy

The newest version!
package com.quhaodian.userfriend.data.dao;


import  com.quhaodian.data.core.BaseDao;
import  com.quhaodian.data.core.Updater;
import  com.quhaodian.userfriend.data.entity.UserFollow;

/**
* Created by imake on 2017年09月01日10:05:18.
*/
public interface UserFollowDao extends BaseDao{


	UserFollow findById(Long id, Long friendid);

	UserFollow findById(Long id);

	 UserFollow save(UserFollow bean);

	 UserFollow updateByUpdater(Updater updater);

	 UserFollow deleteById(Long id);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy