using MiniExcelLibs.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WGShare.Domain.DTOs.User
{
public class UserExcelInputDto
{
///
/// 用户名称
///
[ExcelColumnName("用户名称")]
public string UserName { get; set; }
///
/// 账号
///
[ExcelColumnName("登录账号")]
public string Account { get; set; }
///
/// 密码
///
[ExcelColumnName("登录密码")]
public string? Pwd { get; set; }
///
///
///
[ExcelColumnName("角色")]
public string RoleId{ get; set; }
///
///
///
[ExcelColumnName("届")]
public int Year { get; set; }
///
///
///
[ExcelColumnName("科目")]
public string SubjectName { get; set; }
[ExcelColumnName("导入结果")]
public string ImportResult { get; set; } = string.Empty;
}
}