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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149

#[warn(non_snake_case)]
pub fn query_wrapper () -> QueryWrapper {
  QueryWrapper::new()
}

#[derive(Debug, Clone, Default)]
pub struct QueryWrapper {
  wrapper: Vec<String>,
}

impl QueryWrapper {
  pub fn new() -> Self {
    Self {
      wrapper: vec![]
    }
  }
  /**
   * @description: 模糊查询
   */
  pub fn like<T>(&mut self, key: &'static str, value: Option<T>) -> &mut Self
    where
      T: std::fmt::Display,
  {
    if let Some(v) = value {
      self.wrapper.push(format!("{} LIKE '%{}%'", key, v));
    }
    self
  }

  pub fn left_like<T>(&mut self, key: &'static str, value: Option<T>) -> &mut Self
    where
      T: std::fmt::Display,
  {
    if let Some(v) = value {
      self.wrapper.push(format!("{} LIKE '%{}'", key, v));
    }
    self
  }
  
  pub fn right_like<T>(&mut self, key: &'static str, value: Option<T>) -> &mut Self
    where
      T: std::fmt::Display,
  {
    if let Some(v) = value {
      self.wrapper.push(format!("{} LIKE '{}%'", key, v));
    }
    self
  }

  /**
   * @description: 相等
   */
  pub fn eq<T>(&mut self, key: &'static str, value: Option<T>) -> &mut Self
    where
      T: std::fmt::Display,
  {
    if let Some(v) = value {
      self.wrapper.push(format!("{} = '{}'", key, v));
    }
    self
  }
  /**
   * @description: 不相等
   */
  pub fn ne<T>(&mut self, key: &'static str, value: Option<T>) -> &mut Self
    where
      T: std::fmt::Display,
  {
    if let Some(v) = value {
      self.wrapper.push(format!("{} != '{}'", key, v));
    }
    self
  }
  /**
   * @description: 大于
   */
  pub fn gt<T>(&mut self, key: &'static str, value: Option<T>) -> &mut Self
    where
      T: std::fmt::Display,
  {
    if let Some(v) = value {
      self.wrapper.push(format!("{} > '{}'", key, v));
    }
    self
  }
  /**
   * @description: 小于
   */
  pub fn lt<T>(&mut self, key: &'static str, value: Option<T>) -> &mut Self
    where
      T: std::fmt::Display,
  {
    if let Some(v) = value {
      self.wrapper.push(format!("{} < '{}'", key, v));
    }
    self
  }
  /**
   * @description: 大于等于
   */
  pub fn ge<T>(&mut self, key: &'static str, value: Option<T>) -> &mut Self
    where
      T: std::fmt::Display,
  {
    if let Some(v) = value {
      self.wrapper.push(format!("{} >= '{}'", key, v));
    }
    self
  }
  /**
   * @description: 小于等于
   */
  pub fn le<T>(&mut self, key: &'static str, value: Option<T>) -> &mut Self
    where
      T: std::fmt::Display,
  {
    if let Some(v) = value {
      self.wrapper.push(format!("{} <= '{}'", key, v));
    }
    self
  }
  /**
   * @description: 范围
   */
  pub fn range<T>(
    &mut self,
    key: &'static str,
    s: Option<T>,
    e: Option<T>,
  ) -> &mut Self
    where
      T: std::fmt::Display,
  {
    if let Some(v) = s {
      self.wrapper.push(format!("{} >= '{}'", key, v));
    }
    if let Some(v) = e {
      self.wrapper.push(format!("{} <= '{}'", key, v));
    }
    self
  }
  /**
   * @description: 最后返回sql WHERE
   */
  pub fn build(&mut self) -> String {
    self.wrapper.join(" AND ")
  }
}