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.

35 lines
1.1 KiB

using System;
using SqlSugar;
using System.ComponentModel;
using GDZZ.Core.Entity;
namespace GDZZ.Application.Entity
{
/// <summary>
/// 消费记录
/// </summary>
[SugarTable("mini_consume")]
[Description("消费记录")]
public class Consume : DEntityBase
{
/// <summary>
/// 消费金额
/// </summary>
public decimal CAmount { get; set; }
/// <summary>
/// 余额
/// </summary>
public decimal Surplus { get; set; }
/// <summary>
/// 用户ID
/// </summary>
public long UserID { get; set; }
/// <summary>
/// 消费类型
/// </summary>
public int Sort { get; set; }
/// <summary>
/// 沟通ID
/// </summary>
public long? ResumeID { get; set; }
}
}