Files
ZHJA_HJGL/HJGL_ZH/Model/APIItem/WelderItem.cs
T
2024-05-08 17:17:11 +08:00

258 lines
2.8 KiB
C#

using System;
namespace Model.APIItem
{
public class WelderItem
{ /**
* 人员id
*/
public string WED_ID { get; set; }
/**
* 单位id
*/
public string WED_Unit { get; set; }
/**
* 班组id
*/
public string EDU_ID { get; set; }
/**
* 特种设备人员id
*/
public string SE_EquipmentID { get; set; }
/**
* 无损检测人员id
*/
public string NP_NondestructivePersonID { get; set; }
/**
* 人员代号
*/
public string WED_Code { get; set; }
/**
* 人员姓名
*/
public string WED_Name { get; set; }
/**
* 人员类型
*/
public string WED_UserType { get; set; }
/**
* 性别(1-男,2-女)
*/
public string WED_Sex { get; set; }
/**
* 年龄
*/
public DateTime? WED_Birthday { get; set; }
/**
* 上岗证书
*/
public string WED_WorkCode { get; set; }
/**
* 焊工等级
*/
public string WED_Class { get; set; }
/**
* 总达因数
*/
public decimal? WED_TotalDin { get; set; }
/**
* 总焊口数
*/
public decimal? WED_TotalJoint { get; set; }
/**
* 扩透达因
*/
public decimal? WED_ExtendDin { get; set; }
/**
* 扩透口因
*/
public decimal? WED_ExtendJoint { get; set; }
/**
* 返修焊口数
*/
public decimal? WED_RepairJoint { get; set; }
/**
* 是否在岗
*/
public bool? WED_IfOnGuard { get; set; }
/**
* 备注
*/
public string WED_Remark { get; set; }
/**
* 总拍片数
*/
public int? WED_TotalFilm { get; set; }
/**
* 合格片数
*/
public int? WED_PassFilm { get; set; }
/**
* 扩透总片数
*/
public int? WED_ExtendTotalFilm { get; set; }
/**
* 扩透合格片数
*/
public int? WED_ExtendPassFilm { get; set; }
/**
* 项目id
*/
public string ProjectId { get; set; }
/**
* 厚度最大值
*/
public decimal? ThicknessMax { get; set; }
/**
* 厚度最小值
*/
public decimal? ThicknessMin { get; set; }
/**
* 大小最大值
*/
public decimal? SizesMax { get; set; }
/**
* 大小最小值
*/
public decimal? SizesMin { get; set; }
/**
* 焊工信息录入时间
*/
public DateTime? RecordDate { get; set; }
/**
* 焊工指纹
*/
public string MyFinger { get; set; }
/**
* 电子签名
*/
public string SignatureUrl { get; set; }
/**
* 学历
*/
public string Education { get; set; }
/**
* 状态(0-待鉴定;1-鉴定;2-鉴定合格;-1不合格)
*/
public string WED_States { get; set; }
/**
* 是否从OA同步
*/
public bool? IsOAM { get; set; }
public DateTime? LimitDate { get; set; }
public string IdentityCard { get; set; }
public string AttachUrl { get; set; }
public bool? IsFaceTrain { get; set; }
}
}