20 lines
508 B
C#
20 lines
508 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 黎文豪
|
|
/// @date 2023-06-19
|
|
/// </summary>
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
public class SpecRepository : BaseRepository<Spec>
|
|
{
|
|
#region 业务逻辑代码
|
|
#endregion
|
|
}
|
|
} |