This commit is contained in:
2025-11-06 10:14:41 +08:00
parent dfde366b8e
commit 92a7c811ef
10 changed files with 543 additions and 7 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MyCode.Project.Infrastructure;
using MyCode.Project.Domain;
using MyCode.Project.Domain.Model;
using MyCode.Project.Infrastructure.Common;
using MyCode.Project.Domain.Message;
namespace MyCode.Project.Domain.Repositories
{
public interface IPushKingDeeGoodsDocInRepository : IRepository<PushKingDeeGoodsDocIn>
{
}
}