using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Core.Enums { public enum AnalysisRule { /// /// 分割字符串分割 /// [Description("分割字符串分割")] Split, /// /// 长度分割 /// [Description("长度分割")] Length } public enum AnalysisCode { /// /// 内箱码 /// [Description("内箱码")] InnerCode, /// /// 外箱码 /// [Description("外箱码")] OutterCode } public enum AnalysisFormatType { /// /// 物料编号 /// [Description("物料编号")] MTC, /// /// 生产日期 /// [Description("生产日期")] MTPT, /// /// 批次号 /// [Description("批次号")] BHN, /// /// 数量 /// [Description("数量")] MTQ, /// /// 订单号 /// [Description("订单号")] ODN, /// /// 原始数据 /// [Description("原始数据")] BD, } public enum RuleCode { /// /// 入库单号编码规则编号 /// [Description("入库单号编码规则编号")] InboundOrderRule, /// /// 出库单号编码规则编号 /// [Description("出库单号编码规则编号")] OutboundOrderRule } public enum CodeFormat { /// /// 起始字符串 /// [Description("起始字符串")] ST, /// /// 4位数年 /// [Description("4位数年")] YYYY, /// /// 2位数月 /// [Description("2位数月")] MM, /// /// 2位数日 /// [Description("2位数日")] DD, /// /// 流水号 /// [Description("流水号")] NUM, /// /// 结束字符串 /// [Description("结束字符串")] ED } }