GroupByModel.cs 346 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace SqlSugar
  6. {
  7. public class GroupByModel
  8. {
  9. public object FieldName { get; set; }
  10. public static List<GroupByModel> Create(params GroupByModel[] groupModels)
  11. {
  12. return groupModels.ToList();
  13. }
  14. }
  15. }