OrderProjectService.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. package com.goafanti.order.service;
  2. import java.util.List;
  3. import com.goafanti.common.bo.UserOrderTask;
  4. import com.goafanti.common.model.TTaskHours;
  5. import com.goafanti.core.mybatis.page.Pagination;
  6. import com.goafanti.order.bo.OutTaskProgressLog;
  7. import com.goafanti.order.bo.TOrderTaskDetailBo;
  8. import com.goafanti.order.bo.TOrderTaskListBo;
  9. import com.goafanti.order.bo.TaskLogBo;
  10. import com.goafanti.order.bo.TaskProgressBo;
  11. import com.goafanti.order.bo.UpdateProjectStatusBo;
  12. import com.goafanti.order.bo.inuptTaskHoursListBo;
  13. import com.goafanti.order.bo.inuptTaskListBo;
  14. import com.goafanti.order.bo.managerListBo;
  15. import com.goafanti.order.bo.taskAttributionLogBo;
  16. import com.goafanti.organization.bo.OutPaymentNode;
  17. public interface OrderProjectService {
  18. /**
  19. *
  20. * @param taskId
  21. * @param taskReceiverId
  22. * @param remarks
  23. * @param type 0管理员派单 1经理转交 2经理派单 3咨询师转交 4回退
  24. * @return
  25. */
  26. int updateProjectDistribution(Integer taskId, String taskReceiverId, String remarks,Integer type);
  27. Pagination<TOrderTaskListBo> orderTaskList(inuptTaskListBo ib);
  28. TOrderTaskDetailBo orderTaskDetail(String id);
  29. int updateOrderTask(TOrderTaskDetailBo t);
  30. int addTaskHours(TTaskHours t);
  31. Pagination<TOrderTaskListBo> taskHoursList(inuptTaskHoursListBo ib,
  32. Integer pageNo, Integer pageSize);
  33. Pagination<TOrderTaskListBo> selectTaskList(String name, String orderNo, String taskId, Integer taskStatus, String adminName,
  34. Integer specially,String depId , Integer pageNo, Integer pageSize);
  35. List<TaskLogBo> TaskLogList(Integer id);
  36. int createTaskProgress(TaskProgressBo t);
  37. int delectTaskProgress(Integer id);
  38. List<TaskProgressBo> selectTaskProgress(Integer tid);
  39. List<TTaskHours> taskHoursDetailsList(String taskId);
  40. void checkProjiectAllocation(String orderNo);
  41. int pushSplitProject(Integer tid, String splitList);
  42. List<TOrderTaskListBo> splitProjectList(Integer tid);
  43. void addNoticAndEmail(OutPaymentNode pn, Integer code);
  44. List<OutTaskProgressLog> selectTaskProgressLog(Integer tid);
  45. int updateTaskProgress(TaskProgressBo t);
  46. Pagination<managerListBo> managerSelect(String name, String orderNo, String contractNo, String cid, String projectType, String depId,
  47. String techDepId, Integer declarationBatch, String commodityPrice, String startTime, String endTime, Integer pageNo, Integer pageSize);
  48. int updateProjectStatus(UpdateProjectStatusBo b);
  49. List<taskAttributionLogBo> taskAttributionLog(Integer tid);
  50. List<UserOrderTask> selectUidByproject(String uid);
  51. }