21 lines
422 B
C#
21 lines
422 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.DataMigration
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 数据迁移服务
|
|||
|
|
/// </summary>
|
|||
|
|
public interface IDataMigrationService
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 开始迁移
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
Task StartMigrationAsync();
|
|||
|
|
}
|
|||
|
|
}
|