35 lines
643 B
C#
35 lines
643 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Syc.Basic.Web.WMS
|
|||
|
|
{
|
|||
|
|
public enum BoxDataType
|
|||
|
|
{
|
|||
|
|
装箱,
|
|||
|
|
已码垛,
|
|||
|
|
单品码垛,
|
|||
|
|
成箱码垛,
|
|||
|
|
手动装箱,
|
|||
|
|
手动成箱未包含单品信息
|
|||
|
|
}
|
|||
|
|
public enum SilkStatus
|
|||
|
|
{
|
|||
|
|
已扫码待称重,
|
|||
|
|
已称重,
|
|||
|
|
已装箱,
|
|||
|
|
已码垛,
|
|||
|
|
手动添加称重,
|
|||
|
|
已手动装箱
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public enum AutoLabelType
|
|||
|
|
{
|
|||
|
|
小标签条码流水号,
|
|||
|
|
成箱码垛流水号,
|
|||
|
|
单品流水号
|
|||
|
|
}
|
|||
|
|
}
|