25 lines
775 B
C#
25 lines
775 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.Model.Models
|
|
{
|
|
public class D_XiaoEtongUser: RootEntity
|
|
{
|
|
public string avatar { get; set; }
|
|
public string bind_phone { get; set; }
|
|
public string collect_phone { get; set; }
|
|
public string from { get; set; }
|
|
public int pay_sum { get; set; }
|
|
public int punch_count { get; set; }
|
|
public string user_created_at { get; set; }
|
|
public string user_id { get; set; }
|
|
public string user_nickname { get; set; }
|
|
public string wx_app_open_id { get; set; }
|
|
public string wx_open_id { get; set; }
|
|
public string wx_union_id { get; set; }
|
|
}
|
|
}
|