软件增加功能:标定时记录上一次的历史电压
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WCS.Model.ApiModel.StoreInfo
|
||||
{
|
||||
public class QueryStoreInfoHistoryVoltageRequest : RequestBase
|
||||
{
|
||||
public List<int> StoreIds { get; set; }
|
||||
}
|
||||
}
|
44
WCS.Model/ApiModel/StoreInfo/StoreInfoHistoryVoltageModel.cs
Normal file
44
WCS.Model/ApiModel/StoreInfo/StoreInfoHistoryVoltageModel.cs
Normal file
@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WCS.Model.ApiModel.StoreInfo
|
||||
{
|
||||
public partial class StoreInfoHistoryVoltageModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string StoreCode { get; set; }
|
||||
public int ShelfTypeId { get; set; }
|
||||
public int ModuleId { get; set; }
|
||||
|
||||
public string ModuleCode { get; set; }
|
||||
|
||||
public int ShelfId { get; set; }
|
||||
|
||||
public string ShelfCode { get; set; }
|
||||
|
||||
public int BoardId { get; set; }
|
||||
|
||||
public int LightNumber { get; set; }
|
||||
|
||||
public int Priority { get; set; }
|
||||
|
||||
public string CurrentMatSn { get; set; }
|
||||
|
||||
public decimal CurrentVoltage { get; set; }
|
||||
|
||||
public decimal StandardVoltage { get; set; }
|
||||
|
||||
public decimal OffsetVoltage { get; set; }
|
||||
|
||||
public string BigShelfCode { get; set; }
|
||||
public string R { get; set; }
|
||||
public string C { get; set; }
|
||||
public string Wei { get; set; }
|
||||
public string GroupName { get; set; }
|
||||
public DateTime CreateTime { get; set; }
|
||||
public int RowNumber { get; set; }
|
||||
public bool IsSelected { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user