21 lines
579 B
C#
21 lines
579 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class SymptomsMaintainModel
|
|
{
|
|
public int id { get; set; }
|
|
public string code { get; set; }
|
|
public string symptoms_name { get; set; }
|
|
public string symptoms_type { get; set; }
|
|
public string status { get; set; }
|
|
public string creator { get; set; }
|
|
public string create_time { get; set; }
|
|
public string default_status { get; set; }
|
|
public string pinyin_code { get; set; }
|
|
}
|
|
}
|