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