37 lines
808 B
C#
37 lines
808 B
C#
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; }
|
||
}
|
||
}
|