namespace Admin.NET.Application;
///
/// 用户拓展字段表输出参数
///
public class SysWeChatUserExtendDto
{
///
/// 主键Id
///
public long Id { get; set; }
///
/// 系统用户Id
///
public long UserId { get; set; }
///
/// 学校名称
///
public string SchoolName { get; set; }
///
/// 班级名称
///
public string ClassName { get; set; }
///
/// 选科组合
///
public string subjectGroup { get; set; }
///
/// vip卡号
///
public string VipCode { get; set; }
///
/// 是否更新成绩
///
public int? IsUpdateScore { get; set; }
///
/// 高考年份
///
public int? Year { get; set; }
///
/// 三方uuid
///
public string UUID { get; set; }
///
/// 创建时间
///
public DateTime? CreateTime { get; set; }
///
/// 更新时间
///
public DateTime? UpdateTime { get; set; }
///
/// 创建者Id
///
public long? CreateUserId { get; set; }
///
/// 创建者姓名
///
public string CreateUserName { get; set; }
///
/// 修改者Id
///
public long? UpdateUserId { get; set; }
///
/// 修改者姓名
///
public string UpdateUserName { get; set; }
///
/// 软删除
///
public bool IsDelete { get; set; }
}