You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
553 B

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