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)]
public string Location { get; set; }
///
/// 是否同步过了
///
[SugarColumn(IsNullable = false)]
public bool IsSync { get; set; }
[SugarColumn(IsIgnore =true)]
public int Count { get; set; }
}
}