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
978 B

using System;
using SqlSugar;
using System.ComponentModel;
using GDZZ.Core.Entity;
namespace GDZZ.Application.Entity
{
/// <summary>
/// 充值表
/// </summary>
[SugarTable("mini_recharge")]
[Description("充值表")]
public class MiniRecharge : DEntityBase
{
/// <summary>
/// 总价格
/// </summary>
public decimal TotalPrice { get; set; }
/// <summary>
/// 支付金额
/// </summary>
public decimal PaymentMoney { get; set; }
/// <summary>
/// 充值状态
/// </summary>
public int Status { get; set; }
/// <summary>
/// 充值类型
/// </summary>
public int Type { get; set; }
}
}