11
This commit is contained in:
@@ -75,6 +75,7 @@
|
||||
<Compile Include="SpSysMenuItem.cs" />
|
||||
<Compile Include="SpTDesktopItem.cs" />
|
||||
<Compile Include="SpWeldingDailyItem.cs" />
|
||||
<Compile Include="ViewModels\ImportErrorViewModel.cs" />
|
||||
<Compile Include="ViewModels\TestPackageInfoViewModel.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
@@ -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; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user