using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 无限令领取记录 /// public partial class Give { public uint Id { get; set; } /// /// 会员id /// public uint UserId { get; set; } public string? TimeInt { get; set; } public string? TimeDate { get; set; } /// /// 消费金额 /// public decimal Money { get; set; } public uint Addtime { get; set; } }