using System; using System.Collections.Generic; using System.Text; namespace wms.dto.request.cp { /// /// 称重结果请求 /// public class WeighingResultRequest { /// /// 仓库 /// public string WareHouse { get; set; } /// /// 标准重量 /// public decimal StandardWeight { get; set; } /// /// 称重重量 /// public decimal MeasuredWeight { get; set; } /// /// 偏差上限 /// public decimal UpperDeviationLimit { get; set; } /// /// 偏差下限 /// public decimal LowerDeviationLimit { get; set; } /// /// 是否超限 /// public bool IsOutOfTolerance { get; set; } } }