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

19 lines
467 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class PastHistoryModel
{
public int id { get; set; }
public int inquiry_id { get; set; }
public String disease { get; set; }
public String diagnose_date { get; set; }
public String util { get; set; }
public String treatment { get; set; }
public String outcome { get; set; }
}
}