// namespace SafeCampus.System; /// /// 导入基础输入 /// [ExcelImporter(IsLabelingError = true)] public class ImportTemplateInput { /// /// Id /// [ImporterHeader(IsIgnore = true)] public long Id { get; set; } = CommonUtils.GetSingleId(); /// /// 是否有错误 /// [ImporterHeader(IsIgnore = true)] public bool HasError { get; set; } /// /// 错误详情 /// [ImporterHeader(IsIgnore = true)] public IDictionary ErrorInfo { get; set; } = new Dictionary(); }