Files

15 lines
300 B
C#
Raw Permalink Normal View History

using MyCode.Project.Domain.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Services.IServices
{
2025-07-18 16:42:14 +08:00
public interface IOrderPushService
{
2025-07-25 22:23:48 +08:00
string PushOrderToKingDee(string id);
}
}