key1_beacon_api/ARW.Repository/Business/LogisticsManage/DeliveryRules/DeliveryRuleRepository.cs
2023-06-24 23:21:02 +08:00

20 lines
530 B
C#

using System;
using Infrastructure.Attribute;
using ARW.Repository.System;
using ARW.Model.Models.Business.LogisticsManage.DeliveryRules;
namespace ARW.Repository.Business.LogisticsManage.DeliveryRules
{
/// <summary>
/// 配送模板区域及运费仓储
///
/// @author lwh
/// @date 2023-06-16
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class DeliveryRuleRepository : BaseRepository<DeliveryRule>
{
#region
#endregion
}
}