This commit is contained in:
2025-07-10 15:31:54 +08:00
parent e01ff7f549
commit 99bbfe3c95
7 changed files with 227 additions and 33 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 IYTKJTShopParameterRepository : IRepository<YTKJTShopParameter>
{
}
}