xx_idcontrast.cs 976 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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 HH.YiDaSyncNC.Dtos.NC
  8. {
  9. /// <summary>
  10. /// ID对照表
  11. /// </summary>
  12. [SugarTable("xx_idcontrast")]
  13. public class xx_idcontrast
  14. {
  15. public xx_idcontrast()
  16. {
  17. }
  18. /// <summary>
  19. /// Desc:
  20. /// Default:
  21. /// Nullable:False
  22. /// </summary>
  23. [SugarColumn(IsPrimaryKey = true)]
  24. public string pk_idcontra { get; set; }
  25. public string bill_type { get; set; }
  26. public Int16? dr { get; set; } = 0;
  27. public string file_id { get; set; }
  28. public string isdelete { get; set; }
  29. public string pk_bill { get; set; }
  30. public string sub_mark { get; set; }
  31. public string sub_mark_b { get; set; }
  32. public string ts { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  33. }
  34. }