tijian_tieying/web/dccdc.Models/InfectionOpenUserModel.cs
2025-02-20 12:14:39 +08:00

29 lines
950 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}