TaskServiceI.java 469 B

12345678910111213141516
  1. package com.xcgl.taskplatform.service;
  2. import java.text.ParseException;
  3. import com.xcgl.projecttask.entity.ProjecttaskEntity;
  4. import com.xcgl.projecttaskplan.entity.ProjectTaskPlanEntity;
  5. import com.xcgl.taskplatform.TaskEntityI;
  6. public interface TaskServiceI {
  7. public void CreateFromProjectPlan();
  8. public boolean createOnePlanToTaskImmediately(ProjectTaskPlanEntity plan) throws ParseException ;
  9. public ProjecttaskEntity createTask(TaskEntityI entity) ;
  10. }