20 lines
477 B
C#
20 lines
477 B
C#
using System;
|
|
using Infrastructure.Attribute;
|
|
using ARW.Repository.System;
|
|
using ARW.Model.Models.Business.OrderTasks;
|
|
|
|
namespace ARW.Repository.Business.OrderTasks
|
|
{
|
|
/// <summary>
|
|
/// 订单取消任务仓储
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-23
|
|
/// </summary>
|
|
[AppService(ServiceLifetime = LifeTime.Transient)]
|
|
public class OrderTaskRepository : BaseRepository<OrderTask>
|
|
{
|
|
#region 业务逻辑代码
|
|
#endregion
|
|
}
|
|
} |