JoinModel.cs 330 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace SqlSugar
  5. {
  6. public class JoinModel
  7. {
  8. public string TableName { get; set; }
  9. public string ShortName { get; set; }
  10. public ObjectFuncModel OnWhereList { get; set; }
  11. public JoinType JoinType { get; set; }
  12. }
  13. }