提交代码

This commit is contained in:
2025-03-07 11:05:48 +08:00
parent 39b67b8b4c
commit 9c4bc2154d
14 changed files with 889 additions and 12 deletions
+9
View File
@@ -60,5 +60,14 @@ namespace Model
get;
set;
}
/// <summary>
/// 数量
/// </summary>
public decimal? Amount
{
get;
set;
}
}
}
+30
View File
@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class DayInputItem
{
public string DayInputId { get; set; }
public string ProjectId { get; set; }
public string BaseId { get; set; }
public string WorkSection { get; set; }
public string DrawingId { get; set; }
public string DrawingNo { get; set; }
public string DrawingName { get; set; }
public string Part { get; set; }
public string ProjectContent { get; set; }
public string Unit { get; set; }
public decimal? Amount { get; set; }
public string WorkTeam { get; set; }
public string WorkTeamId { get; set; }
public DateTime? Date { get; set; }
public string DateStr { get; set; }
public decimal? DayAmount { get; set; }
public string Url { get; set; }
public string CompileMan { get; set; }
}
}
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class DrawingItem
{
public string DrawingId { get; set; }
public string DrawingNo { get; set; }
}
}
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class TeamGroupItem
{
public string TeamGroupId { get; set; }
public string TeamGroupName { get; set; }
}
}
+323
View File
@@ -10709,6 +10709,14 @@ namespace Model
}
}
public System.Data.Linq.Table<View_QuantityManagement_DayInputList> View_QuantityManagement_DayInputList
{
get
{
return this.GetTable<View_QuantityManagement_DayInputList>();
}
}
public System.Data.Linq.Table<View_QuantityManagement_ProjectContentStatistics> View_QuantityManagement_ProjectContentStatistics
{
get
@@ -456206,6 +456214,321 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_QuantityManagement_DayInputList")]
public partial class View_QuantityManagement_DayInputList
{
private string _DayInputId;
private string _BaseId;
private string _ProjectId;
private string _DrawingId;
private string _WorkSection;
private string _DrawingNo;
private string _DrawingName;
private string _State;
private string _Major;
private string _Part;
private string _ProjectContent;
private string _Unit;
private System.Nullable<decimal> _Amount;
private string _WorkTeam;
private string _WorkTeamId;
private System.Nullable<System.DateTime> _Date;
private System.Nullable<decimal> _DayAmount;
public View_QuantityManagement_DayInputList()
{
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DayInputId", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
public string DayInputId
{
get
{
return this._DayInputId;
}
set
{
if ((this._DayInputId != value))
{
this._DayInputId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BaseId", DbType="NVarChar(50)")]
public string BaseId
{
get
{
return this._BaseId;
}
set
{
if ((this._BaseId != value))
{
this._BaseId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")]
public string ProjectId
{
get
{
return this._ProjectId;
}
set
{
if ((this._ProjectId != value))
{
this._ProjectId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DrawingId", DbType="NVarChar(50)")]
public string DrawingId
{
get
{
return this._DrawingId;
}
set
{
if ((this._DrawingId != value))
{
this._DrawingId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkSection", DbType="NVarChar(100)")]
public string WorkSection
{
get
{
return this._WorkSection;
}
set
{
if ((this._WorkSection != value))
{
this._WorkSection = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DrawingNo", DbType="NVarChar(100)")]
public string DrawingNo
{
get
{
return this._DrawingNo;
}
set
{
if ((this._DrawingNo != value))
{
this._DrawingNo = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DrawingName", DbType="NVarChar(100)")]
public string DrawingName
{
get
{
return this._DrawingName;
}
set
{
if ((this._DrawingName != value))
{
this._DrawingName = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_State", DbType="Char(1)")]
public string State
{
get
{
return this._State;
}
set
{
if ((this._State != value))
{
this._State = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Major", DbType="NVarChar(30)")]
public string Major
{
get
{
return this._Major;
}
set
{
if ((this._Major != value))
{
this._Major = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Part", DbType="NVarChar(100)")]
public string Part
{
get
{
return this._Part;
}
set
{
if ((this._Part != value))
{
this._Part = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectContent", DbType="NVarChar(100)")]
public string ProjectContent
{
get
{
return this._ProjectContent;
}
set
{
if ((this._ProjectContent != value))
{
this._ProjectContent = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Unit", DbType="NVarChar(50)")]
public string Unit
{
get
{
return this._Unit;
}
set
{
if ((this._Unit != value))
{
this._Unit = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Amount", DbType="Decimal(18,2)")]
public System.Nullable<decimal> Amount
{
get
{
return this._Amount;
}
set
{
if ((this._Amount != value))
{
this._Amount = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkTeam", DbType="NVarChar(50)")]
public string WorkTeam
{
get
{
return this._WorkTeam;
}
set
{
if ((this._WorkTeam != value))
{
this._WorkTeam = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkTeamId", DbType="NVarChar(50)")]
public string WorkTeamId
{
get
{
return this._WorkTeamId;
}
set
{
if ((this._WorkTeamId != value))
{
this._WorkTeamId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Date", DbType="DateTime")]
public System.Nullable<System.DateTime> Date
{
get
{
return this._Date;
}
set
{
if ((this._Date != value))
{
this._Date = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DayAmount", DbType="Decimal(18,2)")]
public System.Nullable<decimal> DayAmount
{
get
{
return this._DayAmount;
}
set
{
if ((this._DayAmount != value))
{
this._DayAmount = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_QuantityManagement_ProjectContentStatistics")]
public partial class View_QuantityManagement_ProjectContentStatistics
{
+3
View File
@@ -82,6 +82,8 @@
<Compile Include="APIItem\CNCEC\UpCheckReportItem.cs" />
<Compile Include="APIItem\CNCEC\UpCheckReportItemItem.cs" />
<Compile Include="APIItem\CNCEC\UpCheckReportItemItem2.cs" />
<Compile Include="APIItem\CQMS\DayInputItem.cs" />
<Compile Include="APIItem\CQMS\DrawingItem.cs" />
<Compile Include="APIItem\EnergyReport.cs" />
<Compile Include="APIItem\EnergyReportItem.cs" />
<Compile Include="APIItem\EnvironmentalCheckInput.cs" />
@@ -191,6 +193,7 @@
<Compile Include="APIItem\SYHSE\DataMajorHazardItem.cs" />
<Compile Include="APIItem\SYHSE\DataHiddenDangersItem.cs" />
<Compile Include="APIItem\SYHSE\DataPromiseItem.cs" />
<Compile Include="APIItem\TeamGroupItem.cs" />
<Compile Include="APIItem\ToDoItem.cs" />
<Compile Include="APIItem\HSSE\TrainingPlanItem.cs" />
<Compile Include="APIItem\HSSE\TrainingPlanItemItem.cs" />