org.iartisan.runtime.web.controller.ISupportRestController Maven / Gradle / Ivy
package org.iartisan.runtime.web.controller;
import org.iartisan.runtime.web.WebR;
/**
*
*
* @author King
* @since 2018/3/20
*/
//@RestController
public interface ISupportRestController {
//删除
WebR deleteData(String keyId);
//修改
WebR modifyData(T t);
//添加
WebR addData(T t);
}