15 lines
361 B
C#
Raw Normal View History

2025-07-04 10:47:18 +08:00
using MyCode.Project.Domain.Message.Response.Common;
2025-07-04 09:50:02 +08:00
using System.Collections.Generic;
namespace MyCode.Project.Services
{
2025-07-08 20:10:02 +08:00
public interface IJackYunTaskService
2025-07-04 09:50:02 +08:00
{
2025-07-07 09:35:11 +08:00
/// <summary>
2025-07-08 20:10:02 +08:00
/// 调度运行抓吉客云销售订单
2025-07-07 09:35:11 +08:00
/// </summary>
2025-07-08 20:10:02 +08:00
/// <param name="now"></param>
void TaskGetJackYunOrder(string now);
2025-07-04 09:50:02 +08:00
}
}