- package com.xcgl.projecttaskplan.service;
- import com.xcgl.projecttaskplan.entity.ProjectTaskPlanEntity;
- import org.jeecgframework.core.common.service.CommonService;
- import java.io.Serializable;
- public interface ProjectTaskPlanServiceI extends CommonService{
-
- public void delete(ProjectTaskPlanEntity entity) throws Exception;
-
- public Serializable save(ProjectTaskPlanEntity entity) throws Exception;
-
- public void saveOrUpdate(ProjectTaskPlanEntity entity) throws Exception;
-
- }
|