You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
3.1 KiB
86 lines
3.1 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Mirle.Component.API.ProgrammableLogicController.Models
|
|
{
|
|
/// <summary>
|
|
/// 完成電梯命令回報類別
|
|
/// </summary>
|
|
public class FP057FinishLifterCommandReportDto : CommonMessage
|
|
{
|
|
/// <summary>
|
|
/// 當下任務編號
|
|
/// </summary>
|
|
/// <remarks>A[YYYYMMDDHH][Sequnce * 5]/S[YYYYMMDDHH][Sequnce * 5]</remarks>
|
|
[Required, StringLength(16), JsonPropertyName("current_task_id"), JsonPropertyOrder(101)]
|
|
public string CurrentTaskID { get; set; }
|
|
/// <summary>
|
|
/// 站點編號
|
|
/// </summary>
|
|
[Required, StringLength(9), JsonPropertyName("station_id"), JsonPropertyOrder(102)]
|
|
public string StationID { get; set; }
|
|
/// <summary>
|
|
/// 抵達樓層
|
|
/// </summary>
|
|
[Required, JsonPropertyName("floor"), JsonPropertyOrder(102)]
|
|
public int Floor { get; set; }
|
|
/// <summary>
|
|
/// 電梯狀態
|
|
/// </summary>
|
|
/// <value>
|
|
/// 0 = Arrived <br/>
|
|
/// 1 = Alarm <br/>
|
|
/// </value>
|
|
[Required, JsonPropertyName("lifter_status"), JsonPropertyOrder(103)]
|
|
public LifterStatus LifterStatus { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 完成電梯命令回應類別
|
|
/// </summary>
|
|
public class TP058FinishLifterCommandAckDto : CommonMessage
|
|
{
|
|
/// <summary>
|
|
/// 當下任務編號
|
|
/// </summary>
|
|
/// <remarks>A[YYYYMMDDHH][Sequnce * 5]/S[YYYYMMDDHH][Sequnce * 5]</remarks>
|
|
[Required, StringLength(16), JsonPropertyName("current_task_id"), JsonPropertyOrder(101)]
|
|
public string CurrentTaskID { get; set; }
|
|
/// <summary>
|
|
/// 抵達樓層
|
|
/// </summary>
|
|
[Required, JsonPropertyName("floor"), JsonPropertyOrder(102)]
|
|
public int Floor { get; set; }
|
|
/// <summary>
|
|
/// 結果代碼
|
|
/// </summary>
|
|
/// <value>
|
|
/// 0 = OK <br/>
|
|
/// 1 = NG <br/>
|
|
/// </value>
|
|
[Required, JsonPropertyName("result_code"), JsonPropertyOrder(103)]
|
|
public ReplyCode ReplyCode { get; set; }
|
|
/// <summary>
|
|
/// 取得完成電梯命令回應
|
|
/// </summary>
|
|
/// <param name="transName">交易名稱</param>
|
|
/// <param name="softwareID">軟體編號</param>
|
|
/// <param name="currentTaskID">當下任務編號</param>
|
|
/// <param name="floor">抵達樓層</param>
|
|
/// <param name="replyCode">回應代碼</param>
|
|
/// <returns>完成電梯命令回應</returns>
|
|
public static TP058FinishLifterCommandAckDto Get(TransactionName transName, string softwareID,
|
|
string currentTaskID, int floor, ReplyCode replyCode)
|
|
{
|
|
return new TP058FinishLifterCommandAckDto()
|
|
{
|
|
Timetick = DateTime.Now,
|
|
TransactionName = transName.ToTransactionName(),
|
|
SoftwareID = softwareID,
|
|
CurrentTaskID = currentTaskID,
|
|
Floor = floor,
|
|
ReplyCode = replyCode
|
|
};
|
|
}
|
|
}
|
|
}
|