|
- 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
- {
- /// <summary>
- /// 卡号
- /// </summary>
- [SugarColumn(IsNullable = false)]
- public string CardNo { get; set; }
- /// <summary>
- /// 消费金额
- /// </summary>
- [SugarColumn(IsNullable = false, ColumnDataType = "decimal(10,2)")]
- public decimal Money { get; set; }
- /// <summary>
- /// 消费位置
- /// </summary>
- [SugarColumn(IsNullable = false)]
- public string Location { get; set; }
- }
- }
|