TTest0822ServiceI.java 444 B

123456789101112131415
  1. package cn.com.lzt.test.service;
  2. import cn.com.lzt.test.entity.TTest0822Entity;
  3. import org.jeecgframework.core.common.service.CommonService;
  4. import java.io.Serializable;
  5. public interface TTest0822ServiceI extends CommonService{
  6. public void delete(TTest0822Entity entity) throws Exception;
  7. public Serializable save(TTest0822Entity entity) throws Exception;
  8. public void saveOrUpdate(TTest0822Entity entity) throws Exception;
  9. }