package com.bcxin.survey.service;

import com.bcxin.survey.domain.order.ExpertOrderPublic;

/**
 * @author hzp
 * 共享专家订单service层
 */
public interface ExpertOrderPublicService {

    void updateStatusToCancel(Long activityId,String taskType,String taskStatus);

    void updateStatus(Long activityId,Long expertId,String taskType,String taskStatus);

    ExpertOrderPublic findExpertByIdWithActivity(Long activityId, Long expertId, String taskType);
}
