key1_beacon_api/ARW.Repository/Business/LogisticsManage/Deliverys/DeliveryRepository.cs
2023-06-16 20:42:23 +08:00

20 lines
505 B
C#

using System;
using Infrastructure.Attribute;
using ARW.Repository.System;
using ARW.Model.Models.Business.LogisticsManage.Deliverys;
namespace ARW.Repository.Business.LogisticsManage.Deliverys
{
/// <summary>
/// 配送模板仓储
///
/// @author 黎文豪
/// @date 2023-06-16
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class DeliveryRepository : BaseRepository<Delivery>
{
#region
#endregion
}
}