using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HKCardOUT.Logic.Model { [SugarTable("SaleLog")] public class SaleLog : BaseEntity { /// /// 卡号 /// [SugarColumn(IsNullable = false)] public string CardNo { get; set; } /// /// 消费金额 /// [SugarColumn(IsNullable = false, ColumnDataType = "decimal(10,2)")] public decimal Money { get; set; } /// /// 消费位置 /// [SugarColumn(IsNullable = false)] public string Location { get; set; } } }