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

23 行
540 B

  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace HKCardOUT.Logic.Model
  6. {
  7. [SugarTable("CardStutas")]
  8. public class CardStutas: BaseEntity
  9. {
  10. /// <summary>
  11. /// 卡号
  12. /// </summary>
  13. [SugarColumn(IsNullable = false)]
  14. public string CardNo { get; set; }
  15. /// <summary>
  16. /// 卡状态 0.禁用 1.正常 2.挂失 3.作废
  17. /// </summary>
  18. [SugarColumn(IsNullable = false)]
  19. public int Stutas { get; set; }
  20. }
  21. }