40 lines
810 B
C#
40 lines
810 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model.HJGL
|
|
{
|
|
public class WelderEntrance
|
|
{
|
|
public string WED_ID { get; set; }
|
|
|
|
public string WED_Unit { get; set; }
|
|
public string WED_UnitName { get; set; }
|
|
|
|
public string WED_Name { get; set; }
|
|
|
|
public string WED_Code { get; set; }
|
|
|
|
public string IdentityCard { get; set; }
|
|
|
|
public string WED_WorkCode { get; set; }
|
|
|
|
public string SE_Equipment { get; set; }
|
|
|
|
public string Limit_Date { get; set; }
|
|
|
|
public string SE_Equipment_Apply { get; set; }
|
|
|
|
public string Exam_Res { get; set; }
|
|
|
|
public string Status { get; set; }
|
|
|
|
public string ProjectId { get; set; }
|
|
|
|
public string Auditor { get; set; }
|
|
public string AuditorName { get; set; }
|
|
}
|
|
}
|