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.
13 lines
406 B
13 lines
406 B
using Tiobon.Core.IServices.BASE;
|
|
using Tiobon.Core.Model;
|
|
using Tiobon.Core.Model.Models;
|
|
|
|
namespace Tiobon.Core.IServices;
|
|
|
|
/// <summary>
|
|
/// 参数配置(自定义服务接口)
|
|
/// </summary>
|
|
public interface IGhre_ConfigServices :IBaseServices<Ghre_Config, Ghre_ConfigDto, InsertGhre_ConfigInput, EditGhre_ConfigInput>
|
|
{
|
|
Task<ServiceResult> BulkUpdateValue(List<Ghre_ConfigDto> entitys);
|
|
} |