emoticon_api/ARW.Repository/Business/GoodsManager/GoodsSpecs/GoodsSpecRels/GoodsSpecRelRepository.cs

20 lines
555 B
C#

using System;
using Infrastructure.Attribute;
using ARW.Repository.System;
using ARW.Model.Models.Business.GoodsManager.GoodsSpecs.GoodsSpecRels;
namespace ARW.Repository.Business.GoodsManager.GoodsSpecs.GoodsSpecRels
{
/// <summary>
/// 商品与规格值关系记录仓储
///
/// @author 黎文豪
/// @date 2023-06-19
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class GoodsSpecRelRepository : BaseRepository<GoodsSpecRel>
{
#region
#endregion
}
}