34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models.DTO
|
|
{
|
|
/// <summary>
|
|
/// 体检结果录入查询条件
|
|
/// </summary>
|
|
public class jglrsctj
|
|
{
|
|
public string tmh { get; set; }
|
|
public string exam_group_maintain_id { get; set; }
|
|
public string person_name { get; set; }
|
|
public string sex { get; set; }
|
|
public string exam_type_id { get; set; }
|
|
public string register_date_start { get; set; }
|
|
public string register_date_end { get; set; }
|
|
public string caiji_date_start { get; set; }
|
|
public string caiji_date_end { get; set; }
|
|
public string register_type { get; set; }
|
|
public string is_complete { get; set; }
|
|
//register_type
|
|
public string printtimes_start { get; set; }
|
|
public string printtimes_end { get; set; }
|
|
public string util_name { get; set; }
|
|
|
|
public string procedure_status { get; set; }
|
|
|
|
public string wz { get; set; }
|
|
}
|
|
}
|