20 lines
536 B
C#
20 lines
536 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace dccdc.Models
|
|||
|
|
{
|
|||
|
|
public class Sz_infectiousDisease_category
|
|||
|
|
{
|
|||
|
|
public int id { get; set; }
|
|||
|
|
public string infectiousDiseaseName { get; set; }
|
|||
|
|
public int infectiousDiseaseCate { get; set; }
|
|||
|
|
public string icd { get; set; }
|
|||
|
|
public int state { get; set; }
|
|||
|
|
public int px { get; set; }
|
|||
|
|
public string DiseaseCode { get; set; }
|
|||
|
|
public string DiseaseName { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|