上传
This commit is contained in:
75
Model/CheckModel.cs
Normal file
75
Model/CheckModel.cs
Normal file
@ -0,0 +1,75 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class ExclModel
|
||||
{/// <summary>
|
||||
/// Band
|
||||
/// </summary>
|
||||
public string Band { get; set; } = "";
|
||||
/// <summary>
|
||||
/// Test result
|
||||
/// </summary>
|
||||
public string Result { get; set; } = "";
|
||||
/// <summary>
|
||||
/// Channel
|
||||
/// </summary>
|
||||
public string Channel { get; set; } = "";
|
||||
/// <summary>
|
||||
/// 文件名
|
||||
/// </summary>
|
||||
public string textname { get; set; } = "";
|
||||
}
|
||||
public class IniModel
|
||||
{/// <summary>
|
||||
/// LTE_BAND_TX_LOW_LOSS-1
|
||||
/// </summary>
|
||||
public string LTE_BAND_TX_LOW_LOSS { get; set; } = "";
|
||||
/// <summary>
|
||||
/// LTE_BAND_TX_MID_LOSS-2
|
||||
/// </summary>
|
||||
public string LTE_BAND_TX_MID_LOSS { get; set; } = "";
|
||||
/// <summary>
|
||||
/// LTE_BAND_TX_HIGH_LOSS-3
|
||||
/// </summary>
|
||||
public string LTE_BAND_TX_HIGH_LOSS { get; set; } = "";
|
||||
/// <summary>
|
||||
/// LTE_BAND_RX_LOW_LOSS-4
|
||||
/// </summary>
|
||||
public string LTE_BAND_RX_LOW_LOSS { get; set; } = "";
|
||||
/// <summary>
|
||||
/// LTE_BAND_RX_MID_LOSS-5
|
||||
/// </summary>
|
||||
public string LTE_BAND_RX_MID_LOSS { get; set; } = "";
|
||||
/// <summary>
|
||||
/// LTE_BAND_TX_HIGH_LOSS-6
|
||||
/// </summary>
|
||||
public string LTE_BAND_RX_HIGH_LOSS { get; set; } = "";
|
||||
/// <summary>
|
||||
/// index
|
||||
/// </summary>
|
||||
public string several_line_loss { get; set; } = "";
|
||||
/// <summary>
|
||||
/// 文件名
|
||||
/// </summary>
|
||||
public string textname { get; set; } = "";
|
||||
}
|
||||
public class JinjiModel
|
||||
{
|
||||
/// <summary>
|
||||
/// type
|
||||
/// </summary>
|
||||
public string type { get; set; } = "";
|
||||
/// <summary>
|
||||
/// snimei
|
||||
/// </summary>
|
||||
public string[] snimei { get; set; } = new string[] { };
|
||||
}
|
||||
public class CheckModel
|
||||
{
|
||||
}
|
||||
}
|
49
Model/Model.csproj
Normal file
49
Model/Model.csproj
Normal file
@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{5A80DE64-FCD5-4D7C-8A1E-4199412D80BD}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Model</RootNamespace>
|
||||
<AssemblyName>Model</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<Deterministic>true</Deterministic>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="CheckModel.cs" />
|
||||
<Compile Include="SettingModel.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
</Project>
|
36
Model/Properties/AssemblyInfo.cs
Normal file
36
Model/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// 有关程序集的一般信息由以下
|
||||
// 控制。更改这些特性值可修改
|
||||
// 与程序集关联的信息。
|
||||
[assembly: AssemblyTitle("Model")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Model")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2024")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// 将 ComVisible 设置为 false 会使此程序集中的类型
|
||||
//对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型
|
||||
//请将此类型的 ComVisible 特性设置为 true。
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
|
||||
[assembly: Guid("5a80de64-fcd5-4d7c-8a1e-4199412d80bd")]
|
||||
|
||||
// 程序集的版本信息由下列四个值组成:
|
||||
//
|
||||
// 主版本
|
||||
// 次版本
|
||||
// 生成号
|
||||
// 修订号
|
||||
//
|
||||
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
|
||||
//通过使用 "*",如下所示:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
77
Model/SettingModel.cs
Normal file
77
Model/SettingModel.cs
Normal file
@ -0,0 +1,77 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class UserModel
|
||||
{
|
||||
/// <summary>
|
||||
/// 工号
|
||||
/// </summary>
|
||||
public string userName { get; set; }
|
||||
/// <summary>
|
||||
/// 姓名
|
||||
/// </summary>
|
||||
public string nickName { get; set; }
|
||||
/// <summary>
|
||||
/// 部门
|
||||
/// </summary>
|
||||
public string bumen { get; set; }
|
||||
/// <summary>
|
||||
/// 职位
|
||||
/// </summary>
|
||||
public string zhiwei { get; set; }
|
||||
}
|
||||
public class SettingModel
|
||||
{
|
||||
/// <summary>
|
||||
/// 机型
|
||||
/// </summary>
|
||||
public string[] Types { get; set; }
|
||||
/// <summary>
|
||||
/// 夹具号1
|
||||
/// </summary>
|
||||
public string devcode1 { get; set; }
|
||||
/// <summary>
|
||||
/// 夹具号2
|
||||
/// </summary>
|
||||
public string devcode2 { get; set; }
|
||||
/// <summary>
|
||||
/// 线损文件地址
|
||||
/// </summary>
|
||||
public string pathini { get; set; }
|
||||
/// <summary>
|
||||
/// 线损文件备份地址
|
||||
/// </summary>
|
||||
public string pathen { get; set; }
|
||||
/// <summary>
|
||||
/// load配置文件地址
|
||||
/// </summary>
|
||||
public string pathLoad { get; set; }
|
||||
/// <summary>
|
||||
/// log文件1地址
|
||||
/// </summary>
|
||||
public string pathch1 { get; set; }
|
||||
/// <summary>
|
||||
/// log文件2地址
|
||||
/// </summary>
|
||||
public string pathch2 { get; set; }
|
||||
public int index { get; set; }
|
||||
|
||||
public SettingModel()
|
||||
{
|
||||
this.Types = new string[] { };
|
||||
this.index = 0;
|
||||
this.devcode1 = "";
|
||||
this.devcode2 = "";
|
||||
this.pathini = "";
|
||||
this.pathen = "";
|
||||
this.pathLoad = "";
|
||||
this.pathch1 = "";
|
||||
this.pathch1 = "";
|
||||
}
|
||||
}
|
||||
}
|
BIN
Model/bin/Debug/Model.dll
Normal file
BIN
Model/bin/Debug/Model.dll
Normal file
Binary file not shown.
BIN
Model/bin/Debug/Model.pdb
Normal file
BIN
Model/bin/Debug/Model.pdb
Normal file
Binary file not shown.
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5.2", FrameworkDisplayName = ".NET Framework 4.5.2")]
|
BIN
Model/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Normal file
BIN
Model/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Normal file
Binary file not shown.
BIN
Model/obj/Debug/Model.csproj.AssemblyReference.cache
Normal file
BIN
Model/obj/Debug/Model.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
1
Model/obj/Debug/Model.csproj.CoreCompileInputs.cache
Normal file
1
Model/obj/Debug/Model.csproj.CoreCompileInputs.cache
Normal file
@ -0,0 +1 @@
|
||||
5b0fed87316a2c0929a745c8f24737b80a561f496f6dcc58c66336c4775c7d1c
|
6
Model/obj/Debug/Model.csproj.FileListAbsolute.txt
Normal file
6
Model/obj/Debug/Model.csproj.FileListAbsolute.txt
Normal file
@ -0,0 +1,6 @@
|
||||
D:\桌面文件夹\Desktop\中移版本库\金机点检\Model\bin\Debug\Model.dll
|
||||
D:\桌面文件夹\Desktop\中移版本库\金机点检\Model\bin\Debug\Model.pdb
|
||||
D:\桌面文件夹\Desktop\中移版本库\金机点检\Model\obj\Debug\Model.csproj.AssemblyReference.cache
|
||||
D:\桌面文件夹\Desktop\中移版本库\金机点检\Model\obj\Debug\Model.csproj.CoreCompileInputs.cache
|
||||
D:\桌面文件夹\Desktop\中移版本库\金机点检\Model\obj\Debug\Model.dll
|
||||
D:\桌面文件夹\Desktop\中移版本库\金机点检\Model\obj\Debug\Model.pdb
|
BIN
Model/obj/Debug/Model.dll
Normal file
BIN
Model/obj/Debug/Model.dll
Normal file
Binary file not shown.
BIN
Model/obj/Debug/Model.pdb
Normal file
BIN
Model/obj/Debug/Model.pdb
Normal file
Binary file not shown.
Reference in New Issue
Block a user