Entities.cs 368 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace SqlSugar
  5. {
  6. internal class JsonQueryableProvider_TableInfo
  7. {
  8. public string Table { get; set; }
  9. public string ShortName { get; set; }
  10. public bool IsMaster { get; set; }
  11. public bool IsJoin { get; set; }
  12. public int Index { get; set; }
  13. }
  14. }