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.
BookingHeChuan/Myshipping.Core/Service/CodeGen/ICodeGenService.cs

19 lines
642 B
C#

using Myshipping.Core.Entity;
using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Myshipping.Core.Service;
public interface ICodeGenService
{
Task AddCodeGen(AddCodeGenInput input);
Task DeleteCodeGen(List<DeleteCodeGenInput> inputs);
Task<SysCodeGen> GetCodeGen([FromQuery] QueryCodeGenInput input);
List<TableColumnOuput> GetColumnList(AddCodeGenInput input);
Task<List<TableOutput>> GetTableList();
Task<dynamic> QueryCodeGenPageList([FromQuery] CodeGenInput input);
Task RunLocal(SysCodeGen input);
Task UpdateCodeGen(UpdateCodeGenInput input);
}