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

com.haoxuer.discover.user.data.dao.UserLabelDao 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.UserLabel;
import com.haoxuer.discover.data.core.BaseDao;
import com.haoxuer.discover.data.core.Updater;

/**
 * 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