key1_beacon_api/ARW.Repository/Business/Payments/PaymentRepository.cs
2023-06-02 21:15:33 +08:00

20 lines
465 B
C#

using System;
using Infrastructure.Attribute;
using ARW.Repository.System;
using ARW.Model.Models.Business.Payments;
namespace ARW.Repository.Business.Payments
{
/// <summary>
/// 支付订单仓储
///
/// @author admin
/// @date 2022-12-15
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class PaymentRepository : BaseRepository<Payment>
{
#region
#endregion
}
}