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

27 lines
738 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class InfectionQuestionModel
{
public int id { get; set; }
public int sheet_id { get; set; }
public int type { get; set; }
public string text { get; set; }
public int sort { get; set; }
public int create_by { get; set; }
public string create_time { get; set; }
public string check_date { get; set; }
public string creater { get; set; }
public string options { get; set; }
public string answer_yes { get; set; }
public string answer_no { get; set; }
public string answer_unknow { get; set; }
}
}