using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Tiger.Model.SeaStone.Shelf
|
{
|
/// <summary>
|
/// 智能料车上报WebHook
|
/// </summary>
|
public class WebHook
|
{
|
public WebHook()
|
{
|
|
}
|
|
public WebHook(string Url, string UserId, string SessionId)
|
{
|
this.Url = Url;
|
this.UserId = UserId;
|
this.SessionId = SessionId;
|
}
|
|
/// <summary>
|
/// WebHook类别,固定值"SlotChanged"
|
/// </summary>
|
public string Key { get; } = "SlotChanged";
|
/// <summary>
|
/// 上报接收接口地址
|
/// </summary>
|
public string Url { get; set; }
|
/// <summary>
|
/// 操作人
|
/// </summary>
|
public string UserId { get; set; }
|
/// <summary>
|
/// 会话ID
|
/// </summary>
|
public string SessionId { get; set; }
|
}
|
}
|