using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// (微信/支付宝)支付 /// public partial class ProfitPay { public uint Id { get; set; } /// /// 用户id /// public uint UserId { get; set; } /// /// 订单号 /// public string OrderNum { get; set; } = null!; /// /// 变化的金额 /// public decimal ChangeMoney { get; set; } /// /// 描述 /// public string Content { get; set; } = null!; /// /// 1微信 2支付宝 /// public byte PayType { get; set; } /// /// 添加时间 /// public uint Addtime { get; set; } }