using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.request.share
{
public class HJSyncMaterInfoListRequest:BaseRequest
{
///
/// 过账凭证号
///
public string ReqId { get; set; }
public List ListInfo { get; set; }
}
public class HJSyncMaterInfoListRequestItem : BaseRequest
{
///
/// 变动类型标识(1新增2修改)
///
public int UpdateType { get; set; }
///
/// 物料编码
///
public string MatCode { get; set; }
///
/// 物料名称
///
public string MatName { get; set; }
public string HeadTypeCode { get; set; }
public string LeafTypeCode { get; set; }
public string Describe { get; set; }
public string Strength { get; set; }
public string Plating { get; set; }
public decimal PlatingWeight { get; set; }
public decimal PlatingConQty { get; set; }
public decimal Linear { get; set; }
///
/// 是否启用时效
///
public bool IsHold { get; set; }
///
/// 时效时长
///
public decimal HoldDuration { get; set; }
public string WeightUnit { get; set; }
public string UpdatedTime { get; set; }
}
}