29 lines
950 B
C#
29 lines
950 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
|
||
namespace dccdc.Models
|
||
{
|
||
public class InfectionOpenUserModel
|
||
{
|
||
public int id { get; set; }
|
||
public string openid { get; set; }
|
||
public int oa_id { get; set; }
|
||
public string oa_trueName { get; set; }
|
||
public string nickname { get; set; }
|
||
public int sex { get; set; }
|
||
public string city { get; set; }
|
||
public string country { get; set; }
|
||
public string province { get; set; }
|
||
public string language { get; set; }
|
||
public string headimgurl { get; set; }
|
||
public int subscribe_time { get; set; }
|
||
public string remark { get; set; }
|
||
public int subscribe { get; set; }
|
||
public int type { get; set; }
|
||
public int state { get; set; }//0:未添加个人信息,1:已添加个人信息
|
||
public string recommendold { get; set; }
|
||
}
|
||
}
|