| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package com.goafanti.order.service;
- import java.io.IOException;
- import java.util.List;
- import javax.servlet.http.HttpServletResponse;
- import org.apache.poi.xssf.usermodel.XSSFWorkbook;
- import com.goafanti.common.model.TTaskHours;
- import com.goafanti.core.mybatis.page.Pagination;
- import com.goafanti.order.bo.TOrderTaskDetailBo;
- import com.goafanti.order.bo.TOrderTaskListBo;
- import com.goafanti.order.bo.TaskLogBo;
- import com.goafanti.order.bo.TaskProgressBo;
- public interface OrderProjectService {
- int updateProjectDistribution(Integer taskId, String taskReceiverId,Integer specially);
- Pagination<TOrderTaskListBo> orderTaskList(String name, String orderNo, String taskId, Integer taskStatus, String adminName,Integer specially, String depId,
- String contractNo, Integer pageNo, Integer pageSize,Integer outsource, Integer outsource2);
- TOrderTaskDetailBo orderTaskDetail(String id);
- int updateOrderTask(TOrderTaskDetailBo t);
- int addTaskHours(TTaskHours t);
-
- Pagination<TOrderTaskListBo> taskHoursList(String name,String orderNo, String taskId,String starTime,String endTime ,Integer type,
- Integer pageNo, Integer pageSize);
- Pagination<TOrderTaskListBo> selectTaskList(String name, String orderNo, String taskId, Integer taskStatus, String adminName,
- Integer specially,String depId , Integer pageNo, Integer pageSize);
- List<TaskLogBo> TaskLogList(Integer id);
- int createTaskProgress(TaskProgressBo t);
- int delectTaskProgress(Integer id);
- List<TaskProgressBo> selectTaskProgress(Integer tid);
- XSSFWorkbook exportTaskHoursListData(String name, String taskId, String startTime, String endTime, Integer type);
- List<TTaskHours> taskHoursDetailsList(String taskId);
- void exportMyTaskList(HttpServletResponse response, String name, String orderNo, String taskId, String starTime, String endTime, Integer type, Integer pageNo, Integer pageSize)throws IOException ;
-
- }
|