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.
16 lines
625 B
16 lines
625 B
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Volo.Abp.DependencyInjection;
|
|
using Win_in.Sfs.Basedata.Application.Contracts;
|
|
using Win_in.Sfs.Shared.Domain.Shared;
|
|
|
|
namespace Win_in.Sfs.Wms.Job.Domain.Acl.ItemBasic
|
|
{
|
|
public interface IItemBasicAclService : ITransientDependency
|
|
{
|
|
Task<ItemBasicDTO> GetByCodeAsync(string itemCode);
|
|
Task<List<ItemBasicDTO>> GetByCodesAsync(IEnumerable<string> codes);
|
|
Task<EnumItemManageType> GetManageTypeAsync(string itemCode);
|
|
Task<Dictionary<string, EnumItemManageType>> GetManageTypesAsync(List<string> itemCodes);
|
|
}
|
|
}
|
|
|