ComplianceServer/code/Hg.Core.Domain/Dto/Lecturer/LecturerDetailModel.cs

52 lines
2.0 KiB
C#

using Hg.Core.Domain.Dto.Live;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Domain.Dto.Lecturer
{
public class LecturerModel
{
public int id { get; set; }
public string name { get; set; }//姓名
public string title { get; set; }//艺名
public int status { get; set; }
public int authorid { get; set; }
public string honor { get; set; }//头衔
public string capacity { get; set; }//投顾身份
public string teachcapacity { get; set; }//投教身份
public string img { get; set; }//头像
public string portrait { get; set; }//肖像
public string memo { get; set; } //简介
public string antecedents { get; set; }// 职业履历
public string acquaintance { get; set; }// 投资心得
public string content { get; set; }//详细介绍
public string code { get; set; } //执业编号
public string qrcode { get; set; }//二维码
public string risktips { get; set; }//风险提示
public string school { get; set; }// 毕业院校
public string dept { get; set; }
public string? deptments { get; set; }
public int sacid { get; set; }
public int checkstatus { get; set; }
public string vscode { get; set; }
public int issac { get; set; }
}
public class LecturerDetailModel : LecturerModel
{
public string certifNo { get; set; }//从业编号
public string pracCtegName { get; set; }//从业类型名称
public int employeeid { get; set; } //员工employee表ID
public int isdelete { get; set; } //是否已在Sac移除
public int? OperatorDeptid { get; set; }
public string DeptName { get; set; }
}
public class LecturerAuditDetailModel : LecturerDetailModel
{
public List<LiveSystemPlanLogDto> Logs { get; set; }
}
}