emoticon_api/ARW.Repository/Business/GoodsManager/GoodsSpecs/Specs/SpecRepository.cs
2023-06-24 23:21:02 +08:00

20 lines
502 B
C#

using System;
using Infrastructure.Attribute;
using ARW.Repository.System;
using ARW.Model.Models.Business.GoodsManager.GoodsSpecs.Specs;
namespace ARW.Repository.Business.GoodsManager.GoodsSpecs.Specs
{
/// <summary>
/// 商品规格组仓储
///
/// @author lwh
/// @date 2023-06-19
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class SpecRepository : BaseRepository<Spec>
{
#region
#endregion
}
}