tijian_tieying/web/dccdc.Models/InfectionDaysignQuestionAnswerModel.cs

19 lines
491 B
C#
Raw Permalink Normal View History

2025-02-20 12:14:39 +08:00
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; }
}
}