com.haoxuer.discover.plug.data.dao.SystemPaymentDao Maven / Gradle / Ivy
package com.haoxuer.discover.plug.data.dao;
import com.haoxuer.discover.plug.data.entity.SystemPayment;
import com.haoxuer.discover.data.core.BaseDao;
import com.haoxuer.discover.data.core.Updater;
/**
* Created by imake on 2017年08月15日11:13:49.
*/
public interface SystemPaymentDao extends BaseDao {
SystemPayment findById(Long id);
SystemPayment save(SystemPayment bean);
SystemPayment updateByUpdater(Updater updater);
SystemPayment deleteById(Long id);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy