leo
2022-12-28 4a43e25a1803e63b501e401b6c7896a19c3ef3d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using SqlSugar;
 
namespace GasolineBlend.Entity
{
   public class PatentSearchAll
    {
        public string keyword { get; set; }
 
        public string keywordField { get; set; }
 
        public string lawStatus { get; set; }
 
        public string content { get; set; }
 
        public int pageNo { get; set; }
 
        public int pageSize { get; set; }
 
        [SugarColumn(IsJson = true)]
        public  List<SortFields> sortFields { get; set; }
 
 
    }
 
   public class PatentSearchDetail
   {
       public string id { get; set; }
   }
}