old_flsystem/类库/Api.Framework/Model/DatabaseMigration.cs

21 lines
433 B
C#
Raw Normal View History

2022-11-21 09:50:35 +00:00
using System;
using Api.Framework.Tools;
namespace Api.Framework.Model
{
/// <summary>
/// 数据库迁移
/// </summary>
public class databasemigration : base_model
{
/// <summary>
/// 是否导出成功
/// </summary>
public bool issuccess { get; set; }
/// <summary>
/// 导出时间
/// </summary>
public DateTime time { get; set; }
}
}