1118-gaofei-焊接首页

This commit is contained in:
gaofei
2021-11-18 10:34:25 +08:00
parent 0aa91d6a8f
commit ed3517280a
9 changed files with 626 additions and 362 deletions
+1
View File
@@ -16,5 +16,6 @@ namespace Model
public List<SingleSerie> series { get; set; }
public List<SingleSerie> series2 { get; set; }
public List<SingleSerie2> series3 { get; set; }
}
}
+6 -6
View File
@@ -71204,7 +71204,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_QualifiedProjectCode", DbType="NVarChar(50)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_QualifiedProjectCode", DbType="NVarChar(500)")]
public string QualifiedProjectCode
{
get
@@ -245489,7 +245489,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(2000)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(200)")]
public string Address
{
get
@@ -245553,7 +245553,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaName", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaName", DbType="NVarChar(200)")]
public string WorkAreaName
{
get
@@ -327152,7 +327152,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(2000)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Address", DbType="NVarChar(200)")]
public string Address
{
get
@@ -327168,7 +327168,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaName", DbType="NVarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaName", DbType="NVarChar(200)")]
public string WorkAreaName
{
get
@@ -334640,7 +334640,7 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Name", DbType="NVarChar(100)")]
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Name", DbType="NVarChar(102)")]
public string Name
{
get
+1
View File
@@ -184,6 +184,7 @@
<Compile Include="PieData.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SingleSerie.cs" />
<Compile Include="SingleSerie2.cs" />
<Compile Include="SpSysMenuItem.cs" />
<Compile Include="SpSysUserItem.cs" />
<Compile Include="APIItem\ResponeData.cs" />
+15
View File
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class SingleSerie2
{
public string name { get; set; }
public string type { get; set; }
public List<double?> data { get; set; }
}
}