//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ // *************************************************************************** // * 作者= 卢松洁 // * 创建时间= 2015-08-27 // * 用途= 寄卖行 // *************************************************************************** // Generated from: consignmentLineHandler.proto // Note: requires additional types generated from: common.proto // Note: requires additional types generated from: item.proto namespace pomelo.area { //--------------------------------------------------------------------------------------- /// /// 寄卖物品 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AddConsignmentRequest")] public partial class AddConsignmentRequest : global::ProtoBuf.IExtensible { public AddConsignmentRequest() {} private int _c2s_index; /// /// 背包中的格子序号 /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_index", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_index { get { return _c2s_index; } set { _c2s_index = value; } } private int _c2s_number; /// /// 数量 /// [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_number", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_number { get { return _c2s_number; } set { _c2s_number = value; } } private int _c2s_price; /// /// 寄卖总价格(钻石) /// [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"c2s_price", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_price { get { return _c2s_price; } set { _c2s_price = value; } } private int _c2s_global; /// /// 是否全区寄卖行 1 是 0 不是 /// [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"c2s_global", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_global { get { return _c2s_global; } set { _c2s_global = value; } } private int _c2s_isAnonymous; /// /// 是否匿名寄卖 1 是 0 不是 /// [global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"c2s_isAnonymous", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_isAnonymous { get { return _c2s_isAnonymous; } set { _c2s_isAnonymous = value; } } private string _c2s_id = ""; /// /// 寄卖的物品ID(重新上架使用) /// [global::ProtoBuf.ProtoMember(6, IsRequired = false, Name=@"c2s_id", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string c2s_id { get { return _c2s_id; } set { _c2s_id = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"AddConsignmentResponse")] public partial class AddConsignmentResponse : global::ProtoBuf.IExtensible { public AddConsignmentResponse() {} private int _s2c_code; [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 下架寄卖物品 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RemoveConsignmentRequest")] public partial class RemoveConsignmentRequest : global::ProtoBuf.IExtensible { public RemoveConsignmentRequest() {} private string _c2s_id; /// /// 物品id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string c2s_id { get { return _c2s_id; } set { _c2s_id = value; } } private int _c2s_global; /// /// 是否全区寄卖行 1 是 0 不是 /// [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_global", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_global { get { return _c2s_global; } set { _c2s_global = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"RemoveConsignmentResponse")] public partial class RemoveConsignmentResponse : global::ProtoBuf.IExtensible { public RemoveConsignmentResponse() {} private int _s2c_code; [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 购买寄卖物品 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BuyConsignmentRequest")] public partial class BuyConsignmentRequest : global::ProtoBuf.IExtensible { public BuyConsignmentRequest() {} private string _c2s_id; /// /// 物品id /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string c2s_id { get { return _c2s_id; } set { _c2s_id = value; } } private int _c2s_global; /// /// 是否全区寄卖行 1 是 0 不是 /// [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_global", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_global { get { return _c2s_global; } set { _c2s_global = value; } } private int _c2s_num = default(int); /// /// 物品购买数量 /// [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"c2s_num", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int c2s_num { get { return _c2s_num; } set { _c2s_num = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"BuyConsignmentResponse")] public partial class BuyConsignmentResponse : global::ProtoBuf.IExtensible { public BuyConsignmentResponse() {} private int _s2c_code; [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 寄卖列表 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ConsignmentListRequest")] public partial class ConsignmentListRequest : global::ProtoBuf.IExtensible { public ConsignmentListRequest() {} private int _c2s_pro; /// /// 职业枚举(1-苍刃 3-剑仙 5-道灵) /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_pro", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_pro { get { return _c2s_pro; } set { _c2s_pro = value; } } private int _c2s_qcolor; /// /// 品质枚举(0-白 1-蓝 2-紫 3-橙 4-红) /// [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_qcolor", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_qcolor { get { return _c2s_qcolor; } set { _c2s_qcolor = value; } } private int _c2s_order; /// /// 排序枚举 /// [global::ProtoBuf.ProtoMember(3, IsRequired = true, Name=@"c2s_order", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_order { get { return _c2s_order; } set { _c2s_order = value; } } private int _c2s_itemSecondType; /// /// 物品2级类型 /// [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"c2s_itemSecondType", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_itemSecondType { get { return _c2s_itemSecondType; } set { _c2s_itemSecondType = value; } } private int _c2s_page; /// /// 当前页数 1 开始 /// [global::ProtoBuf.ProtoMember(5, IsRequired = true, Name=@"c2s_page", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_page { get { return _c2s_page; } set { _c2s_page = value; } } private int _c2s_global; /// /// 是否全区寄卖行 1 是 0 不是 /// [global::ProtoBuf.ProtoMember(6, IsRequired = true, Name=@"c2s_global", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_global { get { return _c2s_global; } set { _c2s_global = value; } } private string _c2s_itemType; /// /// 物品1级类型 /// [global::ProtoBuf.ProtoMember(7, IsRequired = true, Name=@"c2s_itemType", DataFormat = global::ProtoBuf.DataFormat.Default)] public string c2s_itemType { get { return _c2s_itemType; } set { _c2s_itemType = value; } } private int _c2s_level; /// /// 物品等级 /// [global::ProtoBuf.ProtoMember(8, IsRequired = true, Name=@"c2s_level", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_level { get { return _c2s_level; } set { _c2s_level = value; } } private string _c2s_condition = ""; /// /// 文本框条件 /// [global::ProtoBuf.ProtoMember(9, IsRequired = false, Name=@"c2s_condition", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string c2s_condition { get { return _c2s_condition; } set { _c2s_condition = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ConsignmentListResponse")] public partial class ConsignmentListResponse : global::ProtoBuf.IExtensible { public ConsignmentListResponse() {} private int _s2c_code; [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private int _s2c_totalPage = default(int); /// /// 总页数 /// [global::ProtoBuf.ProtoMember(3, IsRequired = false, Name=@"s2c_totalPage", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int s2c_totalPage { get { return _s2c_totalPage; } set { _s2c_totalPage = value; } } private readonly global::System.Collections.Generic.List _s2c_data = new global::System.Collections.Generic.List(); [global::ProtoBuf.ProtoMember(4, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)] public global::System.Collections.Generic.List s2c_data { get { return _s2c_data; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 我的寄卖 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MyConsignmentRequest")] public partial class MyConsignmentRequest : global::ProtoBuf.IExtensible { public MyConsignmentRequest() {} private int _c2s_global; /// /// 是否全区寄卖行 1 是 0 不是 /// [global::ProtoBuf.ProtoMember(4, IsRequired = true, Name=@"c2s_global", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_global { get { return _c2s_global; } set { _c2s_global = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"MyConsignmentResponse")] public partial class MyConsignmentResponse : global::ProtoBuf.IExtensible { public MyConsignmentResponse() {} private int _s2c_code; [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private readonly global::System.Collections.Generic.List _s2c_data = new global::System.Collections.Generic.List(); [global::ProtoBuf.ProtoMember(3, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)] public global::System.Collections.Generic.List s2c_data { get { return _s2c_data; } } private int _s2c_can_sell_num = default(int); /// /// 可以寄卖的数量 /// [global::ProtoBuf.ProtoMember(4, IsRequired = false, Name=@"s2c_can_sell_num", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] [global::System.ComponentModel.DefaultValue(default(int))] public int s2c_can_sell_num { get { return _s2c_can_sell_num; } set { _s2c_can_sell_num = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 搜索 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SearchConsignmentRequest")] public partial class SearchConsignmentRequest : global::ProtoBuf.IExtensible { public SearchConsignmentRequest() {} private string _c2s_condition; /// /// 搜索条件 /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"c2s_condition", DataFormat = global::ProtoBuf.DataFormat.Default)] public string c2s_condition { get { return _c2s_condition; } set { _c2s_condition = value; } } private int _c2s_global; /// /// 是否全区寄卖行 1 是 0 不是 /// [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"c2s_global", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int c2s_global { get { return _c2s_global; } set { _c2s_global = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"SearchConsignmentResponse")] public partial class SearchConsignmentResponse : global::ProtoBuf.IExtensible { public SearchConsignmentResponse() {} private int _s2c_code; [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private readonly global::System.Collections.Generic.List _s2c_data = new global::System.Collections.Generic.List(); /// /// 最大100条数据 /// [global::ProtoBuf.ProtoMember(3, Name=@"s2c_data", DataFormat = global::ProtoBuf.DataFormat.Default)] public global::System.Collections.Generic.List s2c_data { get { return _s2c_data; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- /// /// 宣传 /// [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PublicItemRequest")] public partial class PublicItemRequest : global::ProtoBuf.IExtensible { public PublicItemRequest() {} private string _id; /// /// 宣传的物品寄卖ID /// [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string id { get { return _id; } set { _id = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"PublicItemResponse")] public partial class PublicItemResponse : global::ProtoBuf.IExtensible { public PublicItemResponse() {} private int _s2c_code; [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_msg = ""; [global::ProtoBuf.ProtoMember(2, IsRequired = false, Name=@"s2c_msg", DataFormat = global::ProtoBuf.DataFormat.Default)] [global::System.ComponentModel.DefaultValue("")] public string s2c_msg { get { return _s2c_msg; } set { _s2c_msg = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } //--------------------------------------------------------------------------------------- [global::System.Serializable, global::ProtoBuf.ProtoContract(Name=@"ConsignmentRemovePush")] public partial class ConsignmentRemovePush : global::ProtoBuf.IExtensible { public ConsignmentRemovePush() {} private int _s2c_code; [global::ProtoBuf.ProtoMember(1, IsRequired = true, Name=@"s2c_code", DataFormat = global::ProtoBuf.DataFormat.TwosComplement)] public int s2c_code { get { return _s2c_code; } set { _s2c_code = value; } } private string _s2c_id; /// /// 道具唯一id /// [global::ProtoBuf.ProtoMember(2, IsRequired = true, Name=@"s2c_id", DataFormat = global::ProtoBuf.DataFormat.Default)] public string s2c_id { get { return _s2c_id; } set { _s2c_id = value; } } private global::ProtoBuf.IExtension extensionObject; global::ProtoBuf.IExtension global::ProtoBuf.IExtensible.GetExtensionObject(bool createIfMissing) { return global::ProtoBuf.Extensible.GetExtensionObject(ref extensionObject, createIfMissing); } } }