using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.request.sx
{
public class SxSpoolMaterialInfoTransRequest:BaseRequest
{
///
/// 工字轮条码
///
public string SpoolCode { get; set; }
///
/// 材料号
///
public string MatBarCode { get; set; }
///
/// 物料编码
///
public string MatCode { get; set; }
///
/// 帘线机台号
///
public string WbCode { get; set; }
///
/// 帘线机台组号
///
public string WbGroupCode { get; set; }
///
/// 工序订单号
///
public string WorkOrder { get; set; }
///
/// 工字轮型号
///
public string SpoolType { get; set; }
///
/// 长度
///
public decimal Length { get; set; }
///
/// 物料净重
///
public decimal Weight { get; set; }
///
/// 生产下线时间
///
public string ProductDate { get; set; }
///
/// 时效开始计时时间
///
public string HoldStartDate { get; set; }
///
/// 是否启用时效
///
public bool IsHold { get; set; }
///
/// 是否黑盘
///
public bool IsBlack { get; set; }
///
/// 是否芯股
///
public bool IsCore { get; set; }
///
/// 等级
///
public string Grade { get; set; }
///
/// 是否返工
///
public bool IsRework { get; set; }
///
/// 焊点数量
///
public decimal SolderCount { get; set; }
///
/// 静置时长
///
public decimal HoldDuration { get; set; }
///
/// 是否 扭转检测
///
public bool IsTorsChk { get; set; }
///
/// 是否控制盘
///
public bool IsControl { get; set; }
///
/// 绕向
///
public string? Winding { get; set; }
///
/// 扭转值
///
public string? OvcValue { get; set; }
///
/// 是否重投盘
///
public string ReAutoPackFlag { get; set; }
public string Batch { get; set; }
}
public class SxSpoolMaterialInfoTrans1Request : BaseRequest
{
///
/// 工字轮条码
///
public string SpoolCode { get; set; }
///
/// 材料号
///
public string MatBarCode { get; set; }
///
/// 物料编码
///
public string MatCode { get; set; }
///
/// 帘线机台号
///
public string WbCode { get; set; }
///
/// 帘线机台组号
///
public string WbGroupCode { get; set; }
///
/// 工序订单号
///
public string WorkOrder { get; set; }
///
/// 工字轮型号
///
public string SpoolType { get; set; }
///
/// 长度
///
public decimal Length { get; set; }
///
/// 物料净重
///
public decimal Weight { get; set; }
///
/// 生产下线时间
///
public DateTime ProductDate { get; set; }
///
/// 时效开始计时时间
///
public DateTime HoldStartDate { get; set; }
///
/// 是否启用时效
///
public bool IsHold { get; set; }
///
/// 是否黑盘
///
public bool IsBlack { get; set; }
///
/// 是否芯股
///
public bool IsCore { get; set; }
///
/// 等级
///
public string Grade { get; set; }
///
/// 是否返工
///
public bool IsRework { get; set; }
///
/// 焊点数量
///
public int SolderCount { get; set; }
///
/// 静置时长
///
public decimal HoldDuration { get; set; }
///
/// 是否 扭转检测
///
public bool IsTorsChk { get; set; }
///
/// 是否控制盘
///
public bool IsControl { get; set; }
///
/// 楼层
///
public int Floor { get; set; }
public string EquNo { get; set; }
}
}