2025-07-14 20:39:36 +08:00

23 lines
585 B
C#

using MyCode.Project.Domain.Message.Response.Common;
using MyCode.Project.Repositories.Common;
using System.Collections.Generic;
namespace MyCode.Project.Services
{
public interface IJackYunTaskService
{
/// <summary>
/// 调度运行抓吉客云销售订单
/// </summary>
/// <param name="now"></param>
void TaskGetJackYunOrder(string now);
/// <summary>
/// 合并吉客云订单到新表
/// </summary>
/// <returns></returns>
string GetAndMergeJackYunOrder(string now);
}
}