19 lines
491 B
C#
19 lines
491 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class InfectionDaysignQuestionAnswerModel
|
|
{
|
|
public int id { get; set; }
|
|
public int question_id { get; set; }
|
|
public int info_id { get; set; }
|
|
public string question_sign { get; set; }
|
|
public string answer { get; set; }
|
|
public string create_by { get; set; }
|
|
public string create_time { get; set; }
|
|
}
|
|
}
|