20 lines
473 B
C#
20 lines
473 B
C#
using System;
|
|
using Infrastructure.Attribute;
|
|
using ARW.Repository.System;
|
|
using ARW.Model.Models.Business.OrderManage.Orders;
|
|
|
|
namespace ARW.Repository.Business.OrderManage.Orders
|
|
{
|
|
/// <summary>
|
|
/// 订单仓储
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-08-29
|
|
/// </summary>
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
public class OrderRepository : BaseRepository<Order>
|
|
{
|
|
#region 业务逻辑代码
|
|
#endregion
|
|
}
|
|
} |