using System;
using System.Collections.Generic;
using System.Text;
using wms.dto.response;
namespace wms.dto.request.hj.dto
{
public class MaterInfoResponse
{
}
public class MaterInfo
{
public string MatCode { get; set; }
public string MatName { get; set; }
public string HWSpec { get; set; }
public string Grade { get; set; }
public bool IsHold { get; set; }
public decimal HoldDuration { get; set; }
public string Plating { get; set; }
public decimal PlatingConQty { get; set; }
public decimal Linear { get; set; }
public decimal Weight { get; set; }
public string Flag { get; set; }
}
///
/// 推送数据请求
///
public class PushRequest
{
///
/// 满轮信息集合
///
public List list { get; set; }
}
///
/// 满轮信息明细
///
public class ListInfo
{
public string RFID { get; set; }
public string MatBarCode { get; set; }
public string MatCode { get; set; }
public decimal TolWeight { get; set; }
public decimal NetWeight { get; set; }
public decimal TareWeight { get; set; }
public string LocCode { get; set; }
public string WareCode { get; set; }
public string WareName { get; set; }
///
/// 是否越库(0入立库,1直接搬运至二楼)
///
public short IsMove { get; set; } = 0;
}
public class PushResponse : SRes
{
public bool success { get; set; }
}
public class PushResponse1 : SRes
{
public bool Success { get; set; }
public string Code { get; set; }
}
}