Files
ww-jst/wmsjst/JSMachine.WMS.Application/Dto/ReAutoStockIn.cs
T

28 lines
609 B
C#
Raw Normal View History

2026-09-02 16:31:50 +08:00
using JSMachine.WMS.App.Dto.Enum;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JSMachine.WMS.App.Dto
{
public partial class ReAutoStockIn
{
/// <summary>
/// 原纸卷标
/// </summary>
public string PaperLabel { get; set; }
/// <summary>
/// 入库重量
/// </summary>
public decimal InWeight { get; set; }
/// <summary>
/// 扫码信息来源
/// </summary>
public BarCodeSource BarCodeSource { get; set; }
}
}