using System.Collections.Generic; namespace YBEE.EQM.Core; /// /// 批量成绩导入模板描述 /// public class ExamCourseScoreReportConfig { /// /// 标题行位置 /// public int HeaderRowIndex { get; set; } = 0; /// /// 小题开始位置 /// public int MinorQuestionColumnIndex { get; set; } = 7; /// /// 从左至右列名 /// public List HeaderColumnNames { get; set; } = new(); /// /// 说明 /// public string Remark { get; set; } = ""; }