30 lines
862 B
C#
30 lines
862 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
//对应数据库:infection_test
|
||
namespace dccdc.Models
|
||
{
|
||
public class PhysicalQueryModel
|
||
{
|
||
public int id { get; set; }
|
||
public int user_id { get; set; }
|
||
public string test_type { get; set; }
|
||
public string test_org { get; set; }
|
||
public string name { get; set; }
|
||
public string ident { get; set; }
|
||
public string phone { get; set; }
|
||
public DateTime? order_date { get; set; }
|
||
public string order_place { get; set; }
|
||
public string test_date { get; set; }
|
||
public string cancel_reason { get; set; }
|
||
public int state { get; set; }
|
||
public string create_time { get; set; }
|
||
public DateTime? birth { get; set; }
|
||
public String unit { get; set; }
|
||
|
||
|
||
|
||
}
|
||
}
|