|
|
using Forks.Utils;
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Linq;
|
|
|
using System.Text;
|
|
|
|
|
|
namespace BWP.B3ClientService.NamedValueTemplate
|
|
|
{
|
|
|
public sealed class 胴体状态
|
|
|
{
|
|
|
public static readonly NamedValue<胴体状态> 胴体称重 = new NamedValue<胴体状态>(0);
|
|
|
public static readonly NamedValue<胴体状态> 入预冷库 = new NamedValue<胴体状态>(1);
|
|
|
public static readonly NamedValue<胴体状态> 分割领用 = new NamedValue<胴体状态>(2);
|
|
|
public static readonly NamedValue<胴体状态> 入销售库 = new NamedValue<胴体状态>(3);
|
|
|
public static readonly NamedValue<胴体状态> 销售出库 = new NamedValue<胴体状态>(4);
|
|
|
}
|
|
|
|
|
|
public sealed class 终端
|
|
|
{
|
|
|
public static readonly NamedValue<终端> 白条入库 = new NamedValue<终端>(0);
|
|
|
public static readonly NamedValue<终端> 白条领用 = new NamedValue<终端>(1);
|
|
|
public static readonly NamedValue<终端> 分割生产 = new NamedValue<终端>(2);
|
|
|
public static readonly NamedValue<终端> 扫码入库 = new NamedValue<终端>(3);
|
|
|
public static readonly NamedValue<终端> 分割领用 = new NamedValue<终端>(4);
|
|
|
public static readonly NamedValue<终端> 成品入库 = new NamedValue<终端>(5);
|
|
|
//51-100供B3用
|
|
|
public static readonly NamedValue<终端> 赶猪确认 = new NamedValue<终端>(103);
|
|
|
public static readonly NamedValue<终端> 上线确认 = new NamedValue<终端>(104);
|
|
|
public static readonly NamedValue<终端> 烫毛分线 = new NamedValue<终端>(105);
|
|
|
public static readonly NamedValue<终端> 胴体定级 = new NamedValue<终端>(106);
|
|
|
public static readonly NamedValue<终端> 定级校验 = new NamedValue<终端>(107);
|
|
|
//201-300重定向
|
|
|
}
|
|
|
|
|
|
public sealed class 适用客户端
|
|
|
{
|
|
|
public static readonly NamedValue<适用客户端> 白条出入库 = new NamedValue<适用客户端>(0);
|
|
|
public static readonly NamedValue<适用客户端> 分割品 = new NamedValue<适用客户端>(1);
|
|
|
public static readonly NamedValue<适用客户端> 副产品 = new NamedValue<适用客户端>(2);
|
|
|
public static readonly NamedValue<适用客户端> 分割领用 = new NamedValue<适用客户端>(3);
|
|
|
}
|
|
|
|
|
|
public sealed class 领用类型
|
|
|
{
|
|
|
public static readonly NamedValue<领用类型> 分割领用 = new NamedValue<领用类型>(0);
|
|
|
public static readonly NamedValue<领用类型> 白条销售 = new NamedValue<领用类型>(1);
|
|
|
public static readonly NamedValue<领用类型> 条转段 = new NamedValue<领用类型>(2);
|
|
|
}
|
|
|
|
|
|
public sealed class 批次类型
|
|
|
{
|
|
|
public static readonly NamedValue<批次类型> 屠宰 = new NamedValue<批次类型>(0);
|
|
|
public static readonly NamedValue<批次类型> 分割 = new NamedValue<批次类型>(1);
|
|
|
}
|
|
|
|
|
|
public sealed class 存货类别
|
|
|
{
|
|
|
public static readonly NamedValue<存货类别> 鲜品 = new NamedValue<存货类别>(0);
|
|
|
public static readonly NamedValue<存货类别> 冻品 = new NamedValue<存货类别>(1);
|
|
|
}
|
|
|
}
|