28 lines
757 B
C#
28 lines
757 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class InfectionQuestionRecordModel
|
|
{
|
|
public int id { get; set; }
|
|
public int user_id { get; set; }
|
|
public int info_id { get; set; }
|
|
public string sheet_id { get; set; }
|
|
public string record { get; set; }
|
|
public string create_by { get; set; }
|
|
public string create_time { get; set; }
|
|
|
|
public int count { get; set; }
|
|
|
|
public int sort { get; set; }
|
|
public string answer { get; set; }
|
|
|
|
public string answer_One { get; set; }
|
|
public string answer_Two { get; set; }
|
|
public string answer_Three { get; set; }
|
|
}
|
|
}
|