MapperSql.cs 458 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SqlSugar
  7. {
  8. public class MapperSql
  9. {
  10. public string Sql { get; set; }
  11. }
  12. public class MapperExpressionInfo
  13. {
  14. public Type Type { get; set; }
  15. public EntityInfo EntityInfo { get; set; }
  16. public string FieldName { get; set; }
  17. public string FieldString { get; set; }
  18. }
  19. }