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

34 lines
625 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 微信/支付宝支付信息
/// </summary>
public partial class WxpayLog
{
public uint Id { get; set; }
public uint UserId { get; set; }
/// <summary>
/// 订单号
/// </summary>
public string? OrderNo { get; set; }
/// <summary>
/// 说明
/// </summary>
public string? Content { get; set; }
public byte? Type { get; set; }
/// <summary>
/// 1微信 2支付宝
/// </summary>
public int Channel { get; set; }
public uint? Addtime { get; set; }
}