ProcessRoleDepartMapServiceI.java 534 B

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