软件增加功能:标定时记录上一次的历史电压

This commit is contained in:
hehaibing-1996
2024-11-12 08:33:28 +08:00
parent 6282ecc0c1
commit 40024b339d
13 changed files with 422 additions and 8 deletions

View File

@ -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; }
}
}

View 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; }
}
}