using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Imports
{
///
/// 导入结果实体
///
public class ImportResult
{
///
/// 新增记录数
///
public int InsertCount { get; set; }
///
/// 更新记录数
///
public int UpdateCount { get; set; }
}
}