Files
tnb.server/system/Tnb.Systems.Entitys/Dto/Permission/User/UserImportDataOutput.cs
2023-03-13 15:00:34 +08:00

30 lines
665 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.User;
/// <summary>
/// 用户数据 导出 结果 输出.
/// </summary>
[SuppressSniffer]
public class UserImportResultOutput
{
/// <summary>
/// 导入成功条数.
/// </summary>
public int snum { get; set; }
/// <summary>
/// 导入失败条数.
/// </summary>
public int fnum { get; set; }
/// <summary>
/// 导入结果状态(0成功1失败).
/// </summary>
public int resultType { get; set; }
/// <summary>
/// 失败结果集合.
/// </summary>
public List<UserListImportDataInput> failResult { get; set; }
}