53 lines
1.3 KiB
C#
53 lines
1.3 KiB
C#
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; }
|
||
|
||
/// <summary>
|
||
/// 状态:0、未启用,1、启用,2、禁用
|
||
/// </summary>
|
||
public int? Status { get; set; } = 1;
|
||
|
||
/// <summary>
|
||
///学生数据是否初始化(省份,选科等)
|
||
/// </summary>
|
||
public bool? Datainit { get; set; } = false;
|
||
/// <summary>
|
||
/// 是否为VIP
|
||
/// </summary>
|
||
public bool IsVIP { get; set; } = false;
|
||
|
||
public int Year { get; set; }
|
||
}
|
||
}
|