initial commit
This commit is contained in:
54
cVMS.NET_CS/Class/NotifyData.cs
Normal file
54
cVMS.NET_CS/Class/NotifyData.cs
Normal file
@@ -0,0 +1,54 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Drawing;
|
||||
using System.Diagnostics;
|
||||
using System.Data;
|
||||
using System.Collections;
|
||||
using System.Windows.Forms;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
using AR;
|
||||
|
||||
namespace vmsnet
|
||||
{
|
||||
public class NotifyData
|
||||
{
|
||||
public int idx_m { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 0<><30><EFBFBD>ͽ<EFBFBD><CDBD><EFBFBD><EFBFBD>ϴ<EFBFBD> <20>ε<EFBFBD><CEB5><EFBFBD><EFBFBD><EFBFBD>
|
||||
/// </summary>
|
||||
public int idx_u { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 0<><30><EFBFBD>ͽ<EFBFBD><CDBD><EFBFBD><EFBFBD>ϴ<EFBFBD> <20>ε<EFBFBD><CEB5><EFBFBD><EFBFBD><EFBFBD>
|
||||
/// </summary>
|
||||
public int idx_c { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// ä<>ι<EFBFBD>ȣ 1<><31><EFBFBD>ͽ<EFBFBD><CDBD><EFBFBD>
|
||||
/// </summary>
|
||||
public int chno { get; set; }
|
||||
|
||||
public float offset { get; set; }
|
||||
public byte decpos { get; set; }
|
||||
public bool use { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><><EFBFBD><EFBFBD>)
|
||||
/// </summary>
|
||||
public int value { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// <20><><EFBFBD><EFBFBD><EFBFBD>ð<EFBFBD>(filetime-long)
|
||||
/// yyyy-MM-dd HH:mm:ss
|
||||
/// </summary>
|
||||
public string time { get; set; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"[{chno}-{(this.use ? "O" : "X")}] M{idx_m}U{idx_u}C{idx_c},V={value}";
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user