You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
937 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SlnMesnac.WPF.Model
{
public class DmsShutDownModel
{
/// <summary>
/// 序号
/// </summary>
public int id { get; set; }
/// <summary>
/// 设备名
/// </summary>
public string deviceName { get; set; }
/// <summary>
/// 停机类型
/// </summary>
public string shutReason { get; set; }
/// <summary>
/// 停机开始时间
/// </summary>
public string shutBeginTime { get; set; } = "";
/// <summary>
/// 停机结束时间
/// </summary>
public string shutEndTime { get; set; } = "";
/// <summary>
/// 停机总时长单位min
/// </summary>
public string totalTime { get; set; } = "";
}
}