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