ChouBox/ChouBox.Model/Entities/ProfitPay.cs
2025-04-23 19:20:23 +08:00

43 lines
820 B
C#

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