32 lines
674 B
C#
32 lines
674 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Competition.Mysql.Other
|
|
{
|
|
public class user_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; }
|
|
}
|
|
}
|