You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
459 B
C#
21 lines
459 B
C#
using DS.WMS.Core.Settlement.Entity;
|
|
|
|
namespace DS.WMS.Core.Settlement.Method
|
|
{
|
|
/// <summary>
|
|
/// 付费结算服务
|
|
/// </summary>
|
|
public class PaymentSettlementService : SettlementService<PaymentSettlement>
|
|
{
|
|
/// <summary>
|
|
/// 初始化
|
|
/// </summary>
|
|
/// <param name="provider"></param>
|
|
public PaymentSettlementService(IServiceProvider provider) : base(provider)
|
|
{
|
|
}
|
|
|
|
|
|
}
|
|
}
|