self_mall_api/ARW.Repository/Business/LogisticsManage/Deliverys/DeliveryRepository.cs
2023-06-24 23:21:02 +08:00

20 lines
499 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 lwh
/// @date 2023-06-16
/// </summary>
[AppService(ServiceLifetime = LifeTime.Transient)]
public class DeliveryRepository : BaseRepository<Delivery>
{
#region
#endregion
}
}