This commit is contained in:
jackchenyang
2024-06-06 20:39:00 +08:00
parent fa12713e4c
commit 632ca53467
17 changed files with 1694 additions and 61 deletions
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.ViewModels
{
public class ImportErrorViewModel
{
public int rowId { get; set; }
public string columnName { get; set; }
public string errMsg { get; set; }
public bool isSuccess { get; set; } = true;
public DateTime createdTime { get; set; }
}
}