47 lines
1.6 KiB
C#
47 lines
1.6 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace dccdc.Models
|
|||
|
|
{
|
|||
|
|
public class InfectionOpenUserInfoModel
|
|||
|
|
{
|
|||
|
|
public int id { get; set; }
|
|||
|
|
public int user_id { get; set; }
|
|||
|
|
public int type { get; set; }
|
|||
|
|
public string name { get; set; }
|
|||
|
|
public string ident { get; set; }
|
|||
|
|
public int sex { get; set; }
|
|||
|
|
public string birth { get; set; }
|
|||
|
|
public string unit { get; set; }
|
|||
|
|
public string phone { get; set; }
|
|||
|
|
public string license { get; set; }
|
|||
|
|
public string recommend { get; set; }
|
|||
|
|
public string recommend_state { get; set; }
|
|||
|
|
public string referee { get; set; }
|
|||
|
|
public string crowd_id { get; set; }
|
|||
|
|
public string create_by { get; set; }
|
|||
|
|
public string create_time { get; set; }
|
|||
|
|
public int pass_by { get; set; }
|
|||
|
|
public string oa_trueName { get; set; }
|
|||
|
|
public int oa_id { get; set; }
|
|||
|
|
public string pass_name { get; set; }
|
|||
|
|
public string pass_time { get; set; }
|
|||
|
|
public string isQuestion { get; set; }
|
|||
|
|
public string crowd { get; set; }
|
|||
|
|
public string investigationState { get; set; }
|
|||
|
|
public string isNotQuestionnaire { get; set; }
|
|||
|
|
public string recommendCount { get; set; }
|
|||
|
|
public string openid { get; set; }
|
|||
|
|
public string nickname { get; set; }
|
|||
|
|
public string yzmid { get; set; }
|
|||
|
|
public string yzm { get; set; }
|
|||
|
|
public string picture { get; set; }
|
|||
|
|
public string age { get; set; }
|
|||
|
|
public string state { get; set; }
|
|||
|
|
|
|||
|
|
public string username { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|