2025-07-18 18:06:27 +08:00

15 lines
298 B
C#

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
{
public interface IOrderPushService
{
void PushOrderToKingDee(string id);
}
}