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.
36 lines
727 B
36 lines
727 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Shentun.WebPeis.Models;
|
|
|
|
/// <summary>
|
|
/// 收费支付方式
|
|
/// </summary>
|
|
public partial class ChargePay
|
|
{
|
|
public Guid ChargePayId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 收据号
|
|
/// </summary>
|
|
public Guid ChargeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支付方式
|
|
/// </summary>
|
|
public string PayModeId { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// 金额
|
|
/// </summary>
|
|
public decimal ChargeMoney { get; set; }
|
|
|
|
/// <summary>
|
|
/// 会员卡ID
|
|
/// </summary>
|
|
public Guid? CardBillId { get; set; }
|
|
|
|
public string? ConcurrencyStamp { get; set; }
|
|
|
|
public virtual Charge Charge { get; set; } = null!;
|
|
}
|