using Api.Framework.Enums; using Api.Framework.SDK; using Api.Framework.Tools; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Api.Framework.Model { /// /// 商户支付记录 /// public class fl_shpay_hist : base_model { /// /// 机器人id /// public long rid { get; set; } /// /// 机器人账号 /// public string robotname { get; set; } /// /// 机器人昵称 /// public string robotnick { get; set; } /// /// 用户id /// public long uid { get; set; } /// /// 用户账号 /// public string username { get; set; } /// /// 用户昵称 /// public string usernick { get; set; } /// /// 平台 /// public ChatType chattype { get; set; } /// /// 提现金额 /// public double point { get; set; } /// /// 商户连接 /// public string payurl { get; set; } /// /// 商户orderid /// public string orderid { get; set; } /// /// 生成连接时间 /// public long ctime { get; set; } /// /// 生成日期 /// public long ctimedate { get; set; } /// /// 领取状态 /// public PayGetType paytype { get; set; } = PayGetType.未领取; /// /// 用户领取时间 /// public long paytime { get; set; } /// /// 通知发送时间 /// public long sendtime { get; set; } } }