This commit is contained in:
jl
2024-12-03 10:55:54 +08:00
parent 7bdb8633db
commit a867e6244c
8 changed files with 325 additions and 37 deletions

View File

@ -124,5 +124,51 @@ namespace Epost.Model
}
#endregion
#region
public class bindCtnrAndBinReq
{
public string reqCode { get; set; }
public string reqTime { get; set; }
public string clientCode { get; set; }
public string tokenCode { get; set; }
public string ctnrCode { get; set; }
public string ctnrTyp { get; set; }
public string stgBinCode { get; set; }
public string positionCode { get; set; }
public string indBind { get; set; }
}
public class bindCtnrAndBinResponse
{
public string code { get; set; }
public string data { get; set; }
public bool interrupt { get; set; }
public string reqCode { get; set; }
}
#endregion
#region
public class warnCallbackReq
{
public string reqCode { get; set; }
public string reqTime { get; set; }
public string clientCode { get; set; }
public string tokenCode { get; set; }
public List<warnCallbackData> data { get; set; }
}
public class warnCallbackData
{
public string robotCode { get; set; }
public string beginDate { get; set; }
public string warnContent { get; set; }
public string taskCode { get; set; }
}
#endregion
}