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
583 B
C#
18 lines
583 B
C#
using Myshipping.Core;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System.Threading.Tasks;
|
|
using Myshipping.Core.Entity;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Myshipping.Core.Service
|
|
{
|
|
public interface IDjyUserConfigService
|
|
{
|
|
Task<dynamic> Page([FromQuery] QueryDjyUserConfigInput input);
|
|
Task Add(AddDjyUserConfigInput input);
|
|
Task Update(UpdateDjyUserConfigInput input);
|
|
Task Delete(GetDjyUserConfigInput input);
|
|
Task<DjyUserConfig> Get([FromQuery] string type);
|
|
Task<List<DjyUserConfig>> Multi(string[] typeArr);
|
|
}
|
|
} |