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