51 lines
1.1 KiB
C#
51 lines
1.1 KiB
C#
using MiniExcelLibs.Attributes;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Dtos.User
|
|
{
|
|
/// <summary>
|
|
/// 学习官批量导入转换对象
|
|
/// </summary>
|
|
public class ExcelImportUserDto
|
|
{
|
|
[ExcelColumnName("姓名")]
|
|
public string RealName { get; set; }
|
|
|
|
|
|
[ExcelColumnName("账号")]
|
|
public string Account { get; set; }
|
|
|
|
|
|
[ExcelColumnName("手机号")]
|
|
public string? Phone { get; set; }
|
|
|
|
|
|
[ExcelColumnName("密码")]
|
|
public string Password { get; set; }
|
|
|
|
|
|
[ExcelColumnName("学校")]
|
|
public string SchoolName { get; set; }
|
|
|
|
|
|
[ExcelColumnName("学段")]
|
|
public string GradeLevel { get; set; }
|
|
|
|
|
|
[ExcelColumnName("毕业年份")]
|
|
public int GraduationYear { get; set; }
|
|
|
|
|
|
[ExcelColumnName("班级名称")]
|
|
public string ClassName { get; set; }
|
|
|
|
|
|
[ExcelColumnName("导入结果")]
|
|
public string ImportResult { get; set; }
|
|
}
|
|
}
|