NewGaoKaoApi/New_College.Model/Request/SyncUpdateStudentInfoDto.cs

53 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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