using System;
using System.Threading.Tasks;
using Volo.Abp.Application.Services;
namespace WmsWebApi.Parts {
///
/// 零件
///
public interface IPartService : IApplicationService
{
///
/// 是否是请求重试
///
public bool IsRequestRetry { get; set; }
public Task AddAsync(object content);
}
}