Compare commits

..

No commits in common. "9203802b9ed04626cf1880feca91f580a4e36fb5" and "062f48649bc14ad0a94c6ddcf4fd6a9920be8d86" have entirely different histories.

4 changed files with 577 additions and 863 deletions

Binary file not shown.

View File

@ -75,12 +75,13 @@
<Compile Include="SpSysMenuItem.cs" />
<Compile Include="SpTDesktopItem.cs" />
<Compile Include="SpWeldingDailyItem.cs" />
<Compile Include="ViewModels\TestPackageInfoViewModel.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<Folder Include="ViewModels\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.

View File

@ -1,49 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.ViewModels
{
public class TestPackageInfoViewModel
{
/// <summary>
/// 项目中文名称
/// </summary>
public string projectName { get; set; }
/// <summary>
/// 项目英文名称
/// </summary>
public string enProjectName { get; set; }
/// <summary>
/// 区域中文名称
/// </summary>
public string workAreaName { get; set; }
/// <summary>
/// 区域英文名称
/// </summary>
public string enWorkAreaName { get; set; }
/// <summary>
/// 试压包号
/// </summary>
public string testpackageNo { get; set; }
/// <summary>
/// 区域
/// </summary>
public string workAreaCode { get; set; }
/// <summary>
/// 系统号
/// </summary>
public string SystemNo { get; set; }
/// <summary>
/// 试验压力
/// </summary>
public string TestPressure { get; set; }
/// <summary>
/// 试验方式
/// </summary>
public string TestType { get; set; }
}
}