ComplianceServer/code/Hg.Core.Domain/Dto/Live/LiveSystemPlanLogDto.cs

35 lines
735 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Domain.Dto.Live
{
public class LiveSystemPlanLogDto
{
public int Id { get; set; }
/// <summary>
/// 说明
/// </summary>
public string? Memo { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? Ctime { get; set; }
/// <summary>
/// 状态
/// </summary>
public int? Status { get; set; }
/// <summary>
/// 操作
/// </summary>
public string? Operation { get; set; }
public string? Operatorname { get; set; }
}
}