20 lines
499 B
C#
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
|
|
}
|
|
} |