This commit is contained in:
2025-10-16 19:32:10 +08:00
parent 0a28417898
commit f42519dd61
9 changed files with 387 additions and 10 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 IReturnChangeGoodsDetailRepository : IRepository<ReturnChangeGoodsDetail>
{
}
}