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

com.quhaodian.user.data.dao.UserLabelDao Maven / Gradle / Ivy

There is a newer version: 1.8.7
Show newest version
package com.quhaodian.user.data.dao;


import  com.quhaodian.data.core.BaseDao;
import  com.quhaodian.data.core.Updater;
import  com.quhaodian.user.data.entity.UserLabel;

/**
* Created by imake on 2017年12月06日15:59:13.
*/
public interface UserLabelDao extends BaseDao{

	 UserLabel findById(Long id);

	 UserLabel save(UserLabel bean);

	 UserLabel updateByUpdater(Updater updater);

	 UserLabel deleteById(Long id);


	UserLabel label(String name);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy