You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
973 B
31 lines
973 B
using System;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using GDZZ.Core.Entity;
|
|
namespace GDZZ.Application.Entity
|
|
{
|
|
/// <summary>
|
|
/// 支付记录
|
|
/// </summary>
|
|
[SugarTable("mini_paytake")]
|
|
[Description("支付记录")]
|
|
public class MiniPayTake : DEntityBase
|
|
{
|
|
/// <summary>
|
|
/// 订单ID
|
|
/// </summary>
|
|
public long OrderId { get; set; }
|
|
/// <summary>
|
|
/// 流水号
|
|
/// </summary>
|
|
public string PaySn { get; set; }
|
|
/// <summary>
|
|
/// 支付状态
|
|
/// </summary>
|
|
public int PayStatus { get; set; }
|
|
/// <summary>
|
|
/// 金额
|
|
/// </summary>
|
|
public decimal PaymentMoney { get; set; }
|
|
}
|
|
} |