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

org.iartisan.runtime.support.IBaseManagementService Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package org.iartisan.runtime.support;


import java.io.Serializable;

/**
 * 

* 通用服务 * * @author King * @since 2017/6/22 */ public interface IBaseManagementService extends IBaseService { void saveData(T t); void updateData(T t); void deleteData(T t); void deleteDataById(Serializable id); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy