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.
90 lines
3.3 KiB
90 lines
3.3 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Mirle.Component.API.ProgrammableLogicController.Models
|
|
{
|
|
/// <summary>
|
|
/// 使用鐵捲門請求類別
|
|
/// </summary>
|
|
public class TP037UseRollingDoorRequestDto : CommonMessage
|
|
{
|
|
/// <summary>
|
|
/// 當前任務編號
|
|
/// </summary>
|
|
/// <remarks>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("rolling_door_id"), JsonPropertyOrder(102)]
|
|
public string RollingDoorID { get; set; }
|
|
/// <summary>
|
|
/// 動作模式
|
|
/// </summary>
|
|
/// <value>
|
|
/// 0 = Open <br/>
|
|
/// 1 = Close <br/>
|
|
/// </value>
|
|
[Required, JsonPropertyName("action_mode"), JsonPropertyOrder(103)]
|
|
public RollingDoorActionMode ActionMode { get; set; }
|
|
/// <summary>
|
|
/// 取得使用鐵捲門請求
|
|
/// </summary>
|
|
/// <param name="transName">交易名稱</param>
|
|
/// <param name="softwareID">軟體編號</param>
|
|
/// <param name="currentTaskID">當前任務編號</param>
|
|
/// <param name="rollingDoorID">鐵捲門編號</param>
|
|
/// <param name="actionMode">動作模式</param>
|
|
/// <returns>使用鐵捲門請求</returns>
|
|
public static TP037UseRollingDoorRequestDto Get(TransactionName transName, string softwareID,
|
|
string currentTaskID, string rollingDoorID, RollingDoorActionMode actionMode)
|
|
{
|
|
return new TP037UseRollingDoorRequestDto()
|
|
{
|
|
Timetick = DateTime.Now,
|
|
TransactionName = transName.ToTransactionName(),
|
|
SoftwareID = softwareID,
|
|
CurrentTaskID = currentTaskID,
|
|
RollingDoorID = rollingDoorID,
|
|
ActionMode = actionMode
|
|
};
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// 使用鐵捲門回應類別
|
|
/// </summary>
|
|
public class FP038UseRollingDoorResponseDto : CommonMessage
|
|
{
|
|
/// <summary>
|
|
/// 當前任務編號
|
|
/// </summary>
|
|
/// <remarks>S[YYYYMMDDHH][SEQ * 5]</remarks>
|
|
[Required, StringLength(16), JsonPropertyName("current_task_id"), JsonPropertyOrder(101)]
|
|
public string CurrentTaskID { get; set; }
|
|
/// <summary>
|
|
/// 鐵捲門編號
|
|
/// </summary>
|
|
[Required, StringLength(9), JsonPropertyName("rolling_door_id"), JsonPropertyOrder(102)]
|
|
public string RollingDoorID { get; set; }
|
|
/// <summary>
|
|
/// 動作模式
|
|
/// </summary>
|
|
/// <value>
|
|
/// 0 = Open <br/>
|
|
/// 1 = Close <br/>
|
|
/// </value>
|
|
[Required, JsonPropertyName("action_mode"), JsonPropertyOrder(103)]
|
|
public RollingDoorActionMode ActionMode { get; set; }
|
|
/// <summary>
|
|
/// 結果代碼
|
|
/// </summary>
|
|
/// <value>
|
|
/// 0 = Success <br/>
|
|
/// 1 = Reject <br/>
|
|
/// </value>
|
|
[Required, JsonPropertyName("result_code"), JsonPropertyOrder(104)]
|
|
public UseRollingDoorResultCode ResultCode { get; set; }
|
|
}
|
|
}
|