米其林项目Giraf的新接口,采用WebAPI形式,会应用在上海玉兰,印度米其林及波兰米其林项目中
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.0 KiB

using System.ComponentModel.DataAnnotations.Schema;
namespace WMS_GIRAF_Interface.Models;
public class GetStockListModel
{
public string STOCK_BARCODE { get; set; }
public string? LOTNUMBER { get; set; }
public string? CELL_CODE { get; set; }
public string? CELL_MODEL { get; set; }
public string? supportIdentifier { get; set; }
public bool? supportIsBlocked { get; set; }
public bool? IsBlocked { get; set; }
public bool? IsPriority { get; set; }
public string? PopulationNumber { get; set; }
public DateTime? DryDateTimeInUtc { get; set; }
public DateTime? DryDateTimeInLoc { get; set; }
public DateTime? OldDateTimeInUtc { get; set; }
public DateTime? OldDateTimeInLoc { get; set; }
public DateTime? HdvDateTimeInUtc { get; set; }
public DateTime? HdvDateTimeInLoc { get; set; }
public DateTime? FabricationDateTimeInUtc { get; set; }
public DateTime? FabricationDateTimeInLoc { get; set; }
public int? IsAccessible { get; set; }
}