20 lines
509 B
C#
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
|
|
}
|
|
} |