com.quhaodian.notice.data.dao.UserMessageSubjectDao Maven / Gradle / Ivy
package com.quhaodian.notice.data.dao;
import com.quhaodian.data.core.BaseDao;
import com.quhaodian.data.core.Updater;
import com.quhaodian.notice.data.entity.UserMessageSubject;
/**
* Created by imake on 2018年01月02日11:12:13.
*/
public interface UserMessageSubjectDao extends BaseDao {
UserMessageSubject findById(Long id);
UserMessageSubject save(UserMessageSubject bean);
UserMessageSubject updateByUpdater(Updater updater);
UserMessageSubject deleteById(Long id);
}