|
|
@ -2,6 +2,7 @@
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Myshipping.Core.Entity;
|
|
|
|
using Myshipping.Core.Entity;
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Core.Service
|
|
|
|
namespace Myshipping.Core.Service
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -12,5 +13,6 @@ namespace Myshipping.Core.Service
|
|
|
|
Task Update(UpdateDjyUserConfigInput input);
|
|
|
|
Task Update(UpdateDjyUserConfigInput input);
|
|
|
|
Task Delete(GetDjyUserConfigInput input);
|
|
|
|
Task Delete(GetDjyUserConfigInput input);
|
|
|
|
Task<DjyUserConfig> Get([FromQuery] string type);
|
|
|
|
Task<DjyUserConfig> Get([FromQuery] string type);
|
|
|
|
|
|
|
|
Task<List<DjyUserConfig>> Multi(string[] typeArr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|