| 123456789101112131415161718192021 |
- package com.xcgl.test.service;
- import com.xcgl.test.entity.TestxxEntity;
- import org.jeecgframework.core.common.service.CommonService;
- import java.io.Serializable;
- public interface TestxxServiceI extends CommonService{
-
- public void delete(TestxxEntity entity) throws Exception;
-
- public Serializable save(TestxxEntity entity) throws Exception;
-
- public void saveOrUpdate(TestxxEntity entity) throws Exception;
-
- /**
- * 自定义按钮-[激活]业务处理
- * @param id
- * @return
- */
- public void doActivateBus(TestxxEntity t) throws Exception;
- }
|