using Api.Framework.SDK; using Chat.Framework.WXSdk.IPAD; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using UI.Framework.Entitys; namespace PointManage.Entitys { public class exchange_list_temp { /// /// 用户fl_member_info的id /// [ Browsable(false) ] public long id { get; set; } /// /// 平台类型 /// [ Category("1)、平台信息"), DisplayName("平台"), ReadOnly(true), Description(@"只读:平台信息"), ] public ChatType chattype { get; set; } /// /// 用户fl_robot_info的机器人账号 robot_name /// [ Category("1)、平台信息"), DisplayName("机器人账号"), ReadOnly(true), Description(@"只读:机器人账号"), ] public string robot_name { get; set; } /// /// 用户fl_robot_info的机器人昵称 nick /// [ Category("1)、平台信息"), DisplayName("机器人昵称"), ReadOnly(true), Description(@"只读:机器人昵称"), ] public string robot_nick { get; set; } /// /// 用户账号 /// [ Category("2)、用户信息"), DisplayName("用户账号"), ReadOnly(true), Description(@"只读:用户账号") ] public string username { get; set; } /// /// [昵称] /// [ Category("2)、用户信息"), DisplayName("昵称"), ReadOnly(true), Description(@"只读:昵称") ] public string usernick { get; set; } /// /// [昵称] /// [ Category("2)、用户信息"), DisplayName("用户备注"), ReadOnly(true), Description(@"只读:用户备注") ] public string member_remark { get; set; } /// /// 支付宝账号 /// [ Category("2)、用户信息"), DisplayName("支付宝账号"), ReadOnly(true), Description(@"只读:用户支付宝账号") ] public string alipay_num { get; set; } /// /// 支付宝名称 /// [ Category("2)、用户信息"), DisplayName("支付宝名称"), ReadOnly(true), Description(@"只读:用户支付宝名称") ] public string alipay_name { get; set; } /// /// 身份证名称 /// [ Category("2)、用户信息"), DisplayName("身份证名称"), ReadOnly(true), Description(@"只读:用户身份证名称") ] public string identity_name { get; set; } /// /// 身份证号码 /// [ Category("2)、用户信息"), DisplayName("身份证号码"), ReadOnly(true), Description(@"只读:用户身份证号码") ] public string identity_card { get; set; } /// /// 兑换时间 /// [ Category("2)、用户信息"), DisplayName("用户兑换时间"), ReadOnly(true), Description(@"只读:用户的兑换时间") ] public DateTime time { get; set; } /// /// 用户积分 /// [ Category("2)、用户信息"), DisplayName("用户兑换积分"), ReadOnly(true), Description(@"只读:用户兑换积分") ] public double point { get; set; } /// /// 状态 /// [ Category("3)、订单操作"), DisplayName("订单状态"), Description(@"设置订单状态") ] public ApplyType state { get; set; } /// /// 备注 /// [ Category("3)、订单操作"), DisplayName("订单备注"), Description(@"用户兑换备注"), Editor(typeof(PropertyGridRichText), typeof(System.Drawing.Design.UITypeEditor)) ] public string remark { get; set; } } //public enum PayType : ushort //{ // 关闭 = 0, // 红包 = 1, // 转账 = 2, // 商户 = 3 //} }