JoinInfoParameter.cs 369 B

12345678910111213141516
  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 JoinInfoParameter
  9. {
  10. public string TableName { get; set; }
  11. public string ShortName{ get; set; }
  12. public IFuncModel Models { get; set; }
  13. public JoinType Type { get; set; }
  14. }
  15. }