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

com.haoxuer.discover.web.data.dao.ThemeDao Maven / Gradle / Ivy

package com.haoxuer.discover.web.data.dao;


import  com.haoxuer.discover.data.core.BaseDao;
import  com.haoxuer.discover.data.core.Updater;
import  com.haoxuer.discover.web.data.entity.Theme;

/**
* Created by imake on 2022年02月28日22:22:14.
*/
public interface ThemeDao extends BaseDao{

	 Theme findById(Long id);

	 Theme save(Theme bean);

	 Theme updateByUpdater(Updater updater);

	 Theme deleteById(Long id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy