28 lines
609 B
C#
28 lines
609 B
C#
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; }
|
|
}
|
|
}
|