123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using GxPress.Common.Tools;
- namespace GxPress.Service.Interface.ElasticSearch
- {
- public interface IElasticSearchService:IService
- {
- /// <summary>
- /// 插入数据
- /// </summary>
- /// <returns></returns>
- Task<bool> InsetElasticSearchData(TedeData tedeData);
- Task<bool> ElasticSearchData();
- }
- }
|