OrderProjectService.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package com.goafanti.order.service;
  2. import java.io.IOException;
  3. import java.util.List;
  4. import javax.servlet.http.HttpServletResponse;
  5. import com.goafanti.common.model.TTaskHours;
  6. import com.goafanti.core.mybatis.page.Pagination;
  7. import com.goafanti.order.bo.OutTaskProgressLog;
  8. import com.goafanti.order.bo.TOrderTaskDetailBo;
  9. import com.goafanti.order.bo.TOrderTaskListBo;
  10. import com.goafanti.order.bo.TaskLogBo;
  11. import com.goafanti.order.bo.TaskProgressBo;
  12. import com.goafanti.order.bo.inuptTaskHoursListBo;
  13. import com.goafanti.order.bo.inuptTaskListBo;
  14. import com.goafanti.organization.bo.OutPaymentNode;
  15. public interface OrderProjectService {
  16. int updateProjectDistribution(Integer taskId, String taskReceiverId,Integer specially, String remarks);
  17. Pagination<TOrderTaskListBo> orderTaskList(inuptTaskListBo ib);
  18. TOrderTaskDetailBo orderTaskDetail(String id);
  19. int updateOrderTask(TOrderTaskDetailBo t);
  20. int addTaskHours(TTaskHours t);
  21. Pagination<TOrderTaskListBo> taskHoursList(inuptTaskHoursListBo ib,
  22. Integer pageNo, Integer pageSize);
  23. Pagination<TOrderTaskListBo> selectTaskList(String name, String orderNo, String taskId, Integer taskStatus, String adminName,
  24. Integer specially,String depId , Integer pageNo, Integer pageSize);
  25. List<TaskLogBo> TaskLogList(Integer id);
  26. int createTaskProgress(TaskProgressBo t);
  27. int delectTaskProgress(Integer id);
  28. List<TaskProgressBo> selectTaskProgress(Integer tid);
  29. List<TTaskHours> taskHoursDetailsList(String taskId);
  30. void exportMyTaskList(HttpServletResponse response,inuptTaskHoursListBo ib, Integer pageNo, Integer pageSize)throws IOException ;
  31. void checkProjiectAllocation(String orderNo);
  32. int pushSplitProject(Integer tid, String splitList);
  33. List<TOrderTaskListBo> splitProjectList(Integer tid);
  34. void addNoticAndEmail(OutPaymentNode pn, Integer code);
  35. void exporProjectList(HttpServletResponse response, inuptTaskListBo ib)throws IOException;
  36. List<OutTaskProgressLog> selectTaskProgressLog(Integer tid);
  37. int updateTaskProgress(TaskProgressBo t);
  38. }