tijian_tieying/web/dccdc.Models/PhysicalQueryModel.cs
2025-02-20 12:14:39 +08:00

30 lines
862 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}