self_mall_api/ARW.Repository/Business/Custom/GoodsCollections/GoodsCollectionRepository.cs
2023-10-22 16:34:17 +08:00

20 lines
509 B
C#

using System;
using Infrastructure.Attribute;
using ARW.Repository.System;
using ARW.Model.Models.Business.Custom.GoodsCollections;
namespace ARW.Repository.Business.Custom.GoodsCollections
{
/// <summary>
/// 商品收藏仓储
///
/// @author lwh
/// @date 2023-10-22
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class GoodsCollectionRepository : BaseRepository<GoodsCollection>
{
#region
#endregion
}
}