key1_beacon_api/ARW.Repository/Business/GoodsManager/GoodsComments/GoodsCommentRepository.cs
2023-07-17 02:08:00 +08:00

20 lines
511 B
C#

using System;
using Infrastructure.Attribute;
using ARW.Repository.System;
using ARW.Model.Models.Business.GoodsManager.GoodsComments;
namespace ARW.Repository.Business.GoodsManager.GoodsComments
{
/// <summary>
/// 商品评价仓储
///
/// @author admin
/// @date 2023-07-15
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class GoodsCommentRepository : BaseRepository<GoodsComment>
{
#region
#endregion
}
}