You cannot 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
582 B
C#
18 lines
582 B
C#
using Myshipping.Core;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System.Threading.Tasks;
|
|
using Myshipping.Core.Entity;
|
|
|
|
namespace Myshipping.Core.Service
|
|
{
|
|
public interface IDjyWebsiteAccountConfigService
|
|
{
|
|
Task<dynamic> Page([FromQuery] QueryDjyWebsiteAccountConfigInput input);
|
|
Task<long> Add(AddDjyWebsiteAccountConfigInput input);
|
|
Task<long> Update(UpdateDjyWebsiteAccountConfigInput input);
|
|
Task Delete(GetDjyWebsiteAccountConfigInput input);
|
|
|
|
Task<DjyWebsiteAccountConfig> GetAccountConfig(string TypeCode, long UserId);
|
|
|
|
}
|
|
} |