tijian_tieying/web/dccdc.Models/PhysicalQueryModel.cs

30 lines
862 B
C#
Raw Normal View History

2025-02-20 12:14:39 +08:00
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; }
}
}