using System.Collections.Generic;
namespace wms.dto.request.share
{
///
/// 时效库主数据接收
///
public class SxSyncMaterInfoListRequest : BaseRequest
{
public List ListInfo { get; set; }
}
public class SxSyncMaterInfoRequestItem
{
public string MatCode { get; set; }
public string MatName { get; set; }
public string Describe { get; set; }
public string ProCode { get; set; }
public string ProName { get; set; }
public decimal Length { get; set; }
public decimal OilQty { get; set; }
public string LubType { get; set; }
public decimal LineSpace { get; set; }
public string ProStre { get; set; }
public string ProMix { get; set; }
public string ProDescribe { get; set; }
public decimal LayLength { get; set; }
///
/// 捻向
///
public string LayDirect { get; set; }
public decimal LinearMax { get; set; }
public decimal LinearMin { get; set; }
public decimal LinearTar { get; set; }
public bool IsHold { get; set; }
public decimal HoldDuration { get; set; }
public string SpoolType { get; set; }
public string SpoolName { get; set; }
public string Plating { get; set; }
public string CumIndex { get; set; }
public string SelIndex { get; set; }
///
/// 镀层克重
///
public decimal PlatingWeight { get; set; }
}
}