You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
378 B

using System;
using System.Threading.Tasks;
using Volo.Abp.Application.Services;
namespace WmsWebApi.PPLan;
/// <summary>
/// 计划
/// </summary>
public interface IPPlanService : IApplicationService
{
/// <summary>
/// 是否是请求重试
/// </summary>
public bool IsRequestRetry { get; set; }
public Task<ReturnResult> AddAsync(object content);
}