20220315 代码初始化上传
This commit is contained in:
@@ -0,0 +1,110 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class PassWelderStatisc
|
||||
{
|
||||
private int num;
|
||||
/// <summary>
|
||||
/// 序号
|
||||
/// </summary>
|
||||
public int Num
|
||||
{
|
||||
get { return num; }
|
||||
set { num = value; }
|
||||
}
|
||||
|
||||
private string unitName;
|
||||
/// <summary>
|
||||
/// 分包商
|
||||
/// </summary>
|
||||
public string UnitName
|
||||
{
|
||||
get { return unitName; }
|
||||
set { unitName = value; }
|
||||
}
|
||||
|
||||
private int pipeMountGuard;
|
||||
/// <summary>
|
||||
/// 管道焊工/本周上岗
|
||||
/// </summary>
|
||||
public int PipeMountGuard
|
||||
{
|
||||
get { return pipeMountGuard; }
|
||||
set { pipeMountGuard = value; }
|
||||
}
|
||||
|
||||
private int pipeTotal;
|
||||
/// <summary>
|
||||
/// 管道焊工/累计
|
||||
/// </summary>
|
||||
public int PipeTotal
|
||||
{
|
||||
get { return pipeTotal; }
|
||||
set { pipeTotal = value; }
|
||||
}
|
||||
|
||||
private int steelStructureMountGuard;
|
||||
/// <summary>
|
||||
/// 钢结构焊工/本周上岗
|
||||
/// </summary>
|
||||
public int SteelStructureMountGuard
|
||||
{
|
||||
get { return steelStructureMountGuard; }
|
||||
set { steelStructureMountGuard = value; }
|
||||
}
|
||||
|
||||
private int steelStructureTotal;
|
||||
/// <summary>
|
||||
/// 钢结构焊工/累计
|
||||
/// </summary>
|
||||
public int SteelStructureTotal
|
||||
{
|
||||
get { return steelStructureTotal; }
|
||||
set { steelStructureTotal = value; }
|
||||
}
|
||||
|
||||
private int equipmentMountGuard;
|
||||
/// <summary>
|
||||
/// 设备焊工/本周上岗
|
||||
/// </summary>
|
||||
public int EquipmentMountGuard
|
||||
{
|
||||
get { return equipmentMountGuard; }
|
||||
set { equipmentMountGuard = value; }
|
||||
}
|
||||
|
||||
private int equipmentTotal;
|
||||
/// <summary>
|
||||
/// 设备焊工/累计
|
||||
/// </summary>
|
||||
public int EquipmentTotal
|
||||
{
|
||||
get { return equipmentTotal; }
|
||||
set { equipmentTotal = value; }
|
||||
}
|
||||
|
||||
private int otherMountGuard;
|
||||
/// <summary>
|
||||
/// 其他/本周上岗
|
||||
/// </summary>
|
||||
public int OtherMountGuard
|
||||
{
|
||||
get { return otherMountGuard; }
|
||||
set { otherMountGuard = value; }
|
||||
}
|
||||
|
||||
private int otherTotal;
|
||||
/// <summary>
|
||||
/// 其他/累计
|
||||
/// </summary>
|
||||
public int OtherTotal
|
||||
{
|
||||
get { return otherTotal; }
|
||||
set { otherTotal = value; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user