init: CATL电池线SCADA首次入库
This commit is contained in:
51
DT_SCADA/webApi/CharData.cs
Normal file
51
DT_SCADA/webApi/CharData.cs
Normal file
@@ -0,0 +1,51 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MesWork
|
||||
{
|
||||
public class CharData
|
||||
{
|
||||
public string code { get; set; }
|
||||
public string msg { get; set; }
|
||||
public string errorDetail { get; set; }
|
||||
public string reqId { get; set; }
|
||||
public long timestamp { get; set; }
|
||||
public List<TestResult> data { get; set; }
|
||||
}
|
||||
|
||||
public class TestResult
|
||||
{
|
||||
public string vin { get; set; }
|
||||
public string testCode { get; set; }
|
||||
public string testStatus { get; set; }
|
||||
public string testBeginTime { get; set; }
|
||||
public string testEndTime { get; set; }
|
||||
public string faultInfo { get; set; }
|
||||
}
|
||||
|
||||
public class CharData_Token
|
||||
{
|
||||
public string code { get; set; }
|
||||
public string msg { get; set; }
|
||||
public string errorDetail { get; set; }
|
||||
public string reqId { get; set; }
|
||||
public long timestamp { get; set; }
|
||||
public Token data { get; set; }
|
||||
}
|
||||
public class Token
|
||||
{
|
||||
public string token { get; set; }
|
||||
public long expireTime { get; set; }
|
||||
}
|
||||
|
||||
public class CharDataSearchPrams
|
||||
{
|
||||
public string beginDate { get; set; }
|
||||
public string endDate { get; set; }
|
||||
public string vin { get; set; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user