43 lines
993 B
C#
43 lines
993 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Domain.Dto
|
|
{
|
|
public class AuditBaseDto
|
|
{
|
|
/// <summary>
|
|
/// 讲师 = 1,直播计划 = 2,资讯 = 3,聊天室 = 4
|
|
/// </summary>
|
|
public int? SourceType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 源id
|
|
/// </summary>
|
|
public int? SourceId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 1、报备 2、检查 3、质检
|
|
/// </summary>
|
|
public int? CheckType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
public int? Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作人工号
|
|
/// </summary>
|
|
public int? OperatorId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作人名称
|
|
/// </summary>
|
|
public string? OperatorName { get; set; }
|
|
}
|
|
}
|