ComplianceServer/oldcode/Core.DTO/Lecturer/LecturerRequestDto.cs

103 lines
3.2 KiB
C#

using CRM.Core.DTO.LivePlan;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CRM.Core.DTO.Lecturer
{
public class LecturerRequestDto
{
public int? PageIndex { get; set; }
public int? PageSize { get; set; }
/// <summary>
/// 发布状态
/// </summary>
public int? Status { get; set; }
/// <summary>
/// 审核状态
/// </summary>
public int? Checkstatus { get; set; }
public string Name { get; set; }
public string DeptId { get; set; }
public string Reason { get; set; }
public string Eid { get; set; }
}
public class LecturerResponseDto
{
public int id { get; set; }
public string name { get; set; }//姓名
public string title { get; set; }//艺名
public string img { get; set; }//头像
public int? status { get; set; }
/// <summary>
/// 状态
/// </summary>
public string statusName { get; set; }
public int? issac { get; set; }
/// <summary>
/// 状态
/// </summary>
public string issacName { get; set; }
public int? checkstatus { get; set; }
/// <summary>
/// 状态
/// </summary>
public string checkstatusName { get; set; }
public int? DeptId { get; set; }
public string DeptName { get; set; }
}
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 string DeptName { 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 class LecturerAuditDetailModel : LecturerDetailModel
{
public List<LiveSystemPlanLogDto> Logs { get; set; }
}
}