com.obatis.core.common.ICommonService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obatis-web Show documentation
Show all versions of obatis-web Show documentation
obatis-web, apply web project
package com.obatis.core.common;
import com.obatis.core.exception.HandleException;
import java.math.BigInteger;
public interface ICommonService {
/**
* 根据ID删除数据
* @param id
* @return
* @throws HandleException
*/
int deleteById(BigInteger id) throws HandleException;
/**
* 根据ID查询实体数据
* @param id
* @return
*/
T findById(BigInteger id);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy