采购入库单

This commit is contained in:
2025-11-09 20:26:53 +08:00
parent 92a7c811ef
commit 3977f35abe
11 changed files with 528 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Services.IServices
{
public interface IPurchaseStockInService
{
string PushPurchaseStockInToKingDee(string id);
}
}