using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.User; /// /// 用户数据 导出 结果 输出. /// [SuppressSniffer] public class UserImportResultOutput { /// /// 导入成功条数. /// public int snum { get; set; } /// /// 导入失败条数. /// public int fnum { get; set; } /// /// 导入结果状态(0:成功,1:失败). /// public int resultType { get; set; } /// /// 失败结果集合. /// public List failResult { get; set; } }