111212
This commit is contained in:
parent
ef6a39e24b
commit
359228e24a
Binary file not shown.
|
@ -2,7 +2,7 @@
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ProjectView>ProjectFiles</ProjectView>
|
<ProjectView>ProjectFiles</ProjectView>
|
||||||
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||||
<UseIISExpress>true</UseIISExpress>
|
<UseIISExpress>true</UseIISExpress>
|
||||||
<Use64BitIISExpress />
|
<Use64BitIISExpress />
|
||||||
<IISExpressSSLPort />
|
<IISExpressSSLPort />
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -75,13 +75,12 @@
|
||||||
<Compile Include="SpSysMenuItem.cs" />
|
<Compile Include="SpSysMenuItem.cs" />
|
||||||
<Compile Include="SpTDesktopItem.cs" />
|
<Compile Include="SpTDesktopItem.cs" />
|
||||||
<Compile Include="SpWeldingDailyItem.cs" />
|
<Compile Include="SpWeldingDailyItem.cs" />
|
||||||
|
<Compile Include="ViewModels\TestPackageInfoViewModel.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="packages.config" />
|
<None Include="packages.config" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup />
|
||||||
<Folder Include="ViewModels\" />
|
|
||||||
</ItemGroup>
|
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
<!-- 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.
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
|
|
@ -0,0 +1,49 @@
|
||||||
|
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; }
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -8,7 +8,7 @@
|
||||||
<IISExpressWindowsAuthentication />
|
<IISExpressWindowsAuthentication />
|
||||||
<IISExpressUseClassicPipelineMode />
|
<IISExpressUseClassicPipelineMode />
|
||||||
<UseGlobalApplicationHostFile />
|
<UseGlobalApplicationHostFile />
|
||||||
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||||
<NameOfLastUsedPublishProfile>FolderProfile</NameOfLastUsedPublishProfile>
|
<NameOfLastUsedPublishProfile>FolderProfile</NameOfLastUsedPublishProfile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ProjectExtensions>
|
<ProjectExtensions>
|
||||||
|
|
Loading…
Reference in New Issue