您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CardStutas.cs 540 B

2 年前
2 年前
2 年前
2 年前
12345678910111213141516171819202122
  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. }