using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace BWP.B3SheepButcherManage
|
|
{
|
|
public static class B3SheepButcherManageConsts //常量
|
|
{
|
|
internal static class DmoTypeIDOffsets
|
|
{
|
|
public const byte Livestock = 1;
|
|
public const byte FixedPrice = 2;
|
|
public const byte WeightBill = 3;
|
|
public const byte ButcherOrder = 4;
|
|
public const byte Butcher = 5;
|
|
public const byte StatPay = 6;
|
|
}
|
|
|
|
public static class DataSources
|
|
{
|
|
internal const string Prefix = "B3SheepButcherManager_";
|
|
public const string 可屠宰存货属性 = Prefix + "可屠宰存货属性";
|
|
public const string 活体级别 = Prefix + "活体级别";
|
|
public const string 已审核过磅单 = Prefix + "已审核过磅单";
|
|
}
|
|
|
|
public static class GlobalFlags
|
|
{
|
|
}
|
|
}
|
|
}
|