選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

32 行
792 B

  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace HKCardOUT.Logic.Model
  8. {
  9. [SugarTable("SaleLog")]
  10. public class SaleLog : BaseEntity
  11. {
  12. /// <summary>
  13. /// 卡号
  14. /// </summary>
  15. [SugarColumn(IsNullable = false)]
  16. public string CardNo { get; set; }
  17. /// <summary>
  18. /// 消费位置
  19. /// </summary>
  20. [SugarColumn(IsNullable = false)]
  21. public string Location { get; set; }
  22. /// <summary>
  23. /// 是否同步过了
  24. /// </summary>
  25. [SugarColumn(IsNullable = false)]
  26. public bool IsSync { get; set; }
  27. [SugarColumn(IsIgnore =true)]
  28. public int Count { get; set; }
  29. }
  30. }