28 lines
871 B
C#
28 lines
871 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace videoGather
|
|
{
|
|
internal class ExamRecord
|
|
{
|
|
public string examId { get; set; }
|
|
public string pname { get; set; }
|
|
public string gender { get; set; }
|
|
public string birthday { get; set; }
|
|
public string deviceType { get; set; }
|
|
public string deviceName { get; set; }
|
|
public string seDc { get; set; }
|
|
public string examDate { get; set; }
|
|
public string examItemCode { get; set; }
|
|
public string examItemName { get; set; }
|
|
public string reportstatus { get; set; }
|
|
public string applicationDate { get; set; }
|
|
public string orgId { get; set; }
|
|
public string orgName { get; set; }
|
|
public string regId { get; set; }
|
|
}
|
|
}
|