using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.FeeBillRecvService { /// /// 计费标准枚举 /// public enum FeeUnitEnum { /// /// 单票 /// [Description("单票")] P, /// /// 重量 /// [Description("重量")] Z, /// /// 尺码 /// [Description("尺码")] C, /// /// 件数 /// [Description("件数")] J, /// /// 计费吨 /// [Description("计费吨")] JF, /// /// TEU /// [Description("TEU")] TEU, /// /// 净重 /// [Description("净重")] JZ, /// /// 总价 /// [Description("总价")] ZJ, /// /// 计价重量 /// [Description("计价重量")] JJZL, /// /// 箱型 /// [Description("箱型")] XX, /// /// 天 /// [Description("天")] DAY, /// /// 个 /// [Description("个")] GE, /// /// 小时 /// [Description("小时")] HOUR, /// /// 票 /// [Description("票")] Bill, /// /// 箱 /// [Description("箱")] CNTR, } }