CompetitionAPI_dotnet/Competition.Mysql/Other/exam_operation_ticket.cs

37 lines
808 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Competition.Mysql.Other
{
public class exam_operation_ticket
{
/// <summary>
/// 操作票id
/// </summary>
public string OperationTicketId { get; set; }
/// <summary>
/// 类型 送电、停电
/// </summary>
public string Type { get; set; }
/// <summary>
/// 序号
/// </summary>
public int SerialNumber { get; set; }
/// <summary>
/// 内容
/// </summary>
public string Content { get; set; }
/// <summary>
/// 状态 0未开始、1已开始
/// </summary>
public int State { get; set; }
}
}