20 lines
505 B
C#
20 lines
505 B
C#
using System;
|
|
using Infrastructure.Attribute;
|
|
using ARW.Repository.System;
|
|
using ARW.Model.Models.Business.OrderManage.OrderGoodss;
|
|
|
|
namespace ARW.Repository.Business.OrderManage.OrderGoodss
|
|
{
|
|
/// <summary>
|
|
/// 订单商品记录仓储
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-09-01
|
|
/// </summary>
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
public class OrderGoodsRepository : BaseRepository<OrderGoods>
|
|
{
|
|
#region 业务逻辑代码
|
|
#endregion
|
|
}
|
|
} |