15 lines
361 B
C#
15 lines
361 B
C#
using MyCode.Project.Domain.Message.Response.Common;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MyCode.Project.Services
|
|
{
|
|
public interface IJackYunTaskService
|
|
{
|
|
/// <summary>
|
|
/// 调度运行抓吉客云销售订单
|
|
/// </summary>
|
|
/// <param name="now"></param>
|
|
void TaskGetJackYunOrder(string now);
|
|
}
|
|
}
|