using JNPF.DependencyInjection;
namespace JNPF.Extend.Entitys.Dto.Employee;
[SuppressSniffer]
public class ImportDataOutput
{
///
/// 导入失败信息.
///
public List failResult { get; set; } = new List();
///
/// 失败条数.
///
public int fnum { get; set; }
///
/// 导入是否成功(0:成功).
///
public int resultType { get; set; }
///
/// 成功条数.
///
public int snum { get; set; }
}