招聘后台
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.
 
 

54 lines
1.4 KiB

using System;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
/// <summary>
/// 充值记录
/// </summary>
[Table("rm_payment_record")]
[Serializable]
public class PaymentRecordEntity : BaseEntity
{
/// <summary>
/// 默认构造函数(需要初始化属性的在此处理)
/// </summary>
public PaymentRecordEntity()
{
CreatedTime = DateTime.Now;
ModifiedTime = DateTime.Now;
}
/// <summary>
/// 用户Id
/// </summary>
public long UserId { get; set; }
/// <summary>
/// 订单ID
/// </summary>
public long OrderId { get; set; }
/// <summary>
/// 支付流水号
/// </summary>
public string PaySn { get; set; }
/// <summary>
/// 支付状态:0-已取消-10-未成功,20-已成功
/// </summary>
/// <value></value>
public int PayStatus { get; set; }
/// <summary>
/// 支付平台:1-Wx,2支付宝
/// </summary>
public int PayPlatform { get; set; }
/// <summary>
/// 支付金额
/// </summary>
public decimal PaymentMoney { get; set; }
}
}