18 lines
433 B
C#
18 lines
433 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace dccdc.Models
|
|
{
|
|
public class InfectionCheckModel
|
|
{
|
|
public int id { get; set; }
|
|
public int user_id { get; set; }
|
|
public int state { get; set; }
|
|
public string check_date { get; set; }
|
|
public string create_time { get; set; }
|
|
public int check_state { get; set; }
|
|
}
|
|
}
|