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