111 lines
2.6 KiB
C#
111 lines
2.6 KiB
C#
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; }
|
|
}
|
|
}
|
|
}
|