Files
PTL/1.0.0/src/FASS.Scheduler.Lite/Controllers/Models/Request/BomItem.cs
T
2026-07-14 21:29:27 +08:00

26 lines
1.3 KiB
C#

namespace FASS.Scheduler.Lite.Controllers.Models.Request
{
public class BomItem
{
public string? FactoryCode { get; set; }//工厂编码
public string? FactoryName { get; set; }//工厂名称
public string? WorkshopCode { get; set; }//车间编码
public string? WorkshopName { get; set; }//车间名称
public required string AreaCode { get; set; }//配载区编码
public string? AreaName { get; set; }//配载区名称
public required string PullNo { get; set; }//拉动单号
public DateTime? PassPointTime { get; set; }//过点时间
public required string SequenceNo { get; set; }//过点流水号
public required string PrOrderNo { get; set; }//生产订单号
public required string Vin { get; set; }//车辆VIN
public required string CarDetail { get; set; } //车型配置
public required string MaterialCode { get; set; }//物料编码
public string? MaterialName { get; set; }//物料名称
public string? SmplifiedCode { get; set; }//物料简码
public required string StorageCode { get; set; }//库位编码
public string? Unit { get; set; }//基本单位
public int Quantity { get; set; }//需求数量
public string? StationCode { get; set; }//线边工位
}
}