package com.xcgl.taskplatform.service; import java.text.ParseException; import com.xcgl.projecttask.entity.ProjecttaskEntity; import com.xcgl.projecttaskplan.entity.ProjectTaskPlanEntity; import com.xcgl.taskplatform.TaskEntityI; public interface TaskServiceI { public void CreateFromProjectPlan(); public boolean createOnePlanToTaskImmediately(ProjectTaskPlanEntity plan) throws ParseException ; public ProjecttaskEntity createTask(TaskEntityI entity) ; }