using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace New_College.Model
{
public class SyncUpdateCustomerDto
{
public string key { get; set; }
public SyncUpdateStudentInfoDto syncUpdateStudentInfoDto { get; set; }
}
public class SyncUpdateStudentInfoDto
{
public string UserCode { get; set; }
public string OpenId { get; set; }
public string NickName { get; set; }
public int Gender { get; set; }
public string Phone { get; set; }
public string UserPwd { get; set; }
public string Salt { get; set; }
public string SchoolName { get; set; }
public string ClassName { get; set; }
public int AreaId { get; set; } = 0;
public string AreaName { get; set; }
///
/// 状态:0、未启用,1、启用,2、禁用
///
public int? Status { get; set; } = 1;
///
///学生数据是否初始化(省份,选科等)
///
public bool? Datainit { get; set; } = false;
///
/// 是否为VIP
///
public bool IsVIP { get; set; } = false;
public int Year { get; set; }
}
}