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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
//! # Repository Pattern for SeaORM
//!
//! 通过派生宏自动为 Repository 结构体生成 CRUD 方法。
//!
//! ## 基本用法
//!
//! ```ignore
//! use searepo::{Repository, FindFilter, SearchFilter};
//!
//! #[derive(Repository)]
//! #[repository(entity = "entities::user", domain = "User")]
//! pub struct UserRepository {
//! db: Arc<DatabaseConnection>,
//! }
//! ```
//!
//! ## 功能选择
//!
//! - 默认:只生成 `find` + `search` 相关方法
//! - `all = true`:生成所有方法
//! - `include = ["find", "insert"]`:只生成指定功能
//! - `exclude = ["delete"]`:排除指定功能
// Re-export async_trait for internal use
pub use Repository;
pub use ;
/// 分页策略
///
/// 支持两种分页方式:
/// - `PageOffset`: 传统的页码分页(页码从 1 开始)
/// - `Cursor`: 游标分页,适用于大数据集
/// 搜索结果封装
///
/// 包含查询结果和分页元数据。
///
/// # 字段说明
///
/// - `total_count`: 符合条件的总记录数
/// - `total_page`: 总页数
/// - `page`: 当前页码
/// - `size`: 当前页大小
/// - `items`: 当前页的数据
/// 单条查询过滤器 Trait
///
/// 用于 `find()`、`load()`、`exists()` 方法。
///
/// # 示例
///
/// ```ignore
/// use searepo::FindFilter;
/// use sea_orm::*;
///
/// pub enum UserFind {
/// ById(i64),
/// ByEmail(String),
/// }
///
/// impl FindFilter<Entity> for UserFind {
/// fn to_select(self) -> Select<Entity> {
/// match self {
/// UserFind::ById(id) => Entity::find_by_id(id),
/// UserFind::ByEmail(email) => Entity::find().filter(Column::Email.eq(email)),
/// }
/// }
/// }
/// ```
/// 列表搜索过滤器 Trait
///
/// 用于 `search()`、`count()` 方法,支持分页。
///
/// # 示例
///
/// ```ignore
/// use searepo::{SearchFilter, Pagination};
/// use sea_orm::*;
///
/// #[derive(Default)]
/// pub struct UserSearch {
/// pub name: Option<String>,
/// pub active: Option<bool>,
/// pub pagination: Option<Pagination>,
/// }
///
/// impl SearchFilter<Entity> for UserSearch {
/// fn to_select(self) -> Select<Entity> {
/// let mut select = Entity::find();
/// if let Some(name) = self.name {
/// select = select.filter(Column::Name.contains(&name));
/// }
/// if let Some(active) = self.active {
/// select = select.filter(Column::Active.eq(active));
/// }
/// select
/// }
///
/// fn pagination(&self) -> Option<Pagination> {
/// self.pagination
/// }
/// }
/// ```
/// Upsert 冲突处理策略 Trait
///
/// 用于 `upsert()`、`batch_upsert()` 方法,定义冲突时的处理策略。
///
/// # 示例
///
/// ```ignore
/// use searepo::Upsertable;
/// use sea_orm::sea_query::OnConflict;
///
/// impl Upsertable<Entity> for User {
/// fn on_conflict() -> OnConflict {
/// use entities::user::Column;
/// // 当 email 冲突时,更新 username 和 updated_at
/// OnConflict::columns([Column::Email])
/// .update_columns([Column::Username, Column::UpdatedAt])
/// .to_owned()
/// }
/// }
/// ```
/// 删除过滤器 Trait
///
/// 用于 `delete()`、`delete_count()` 方法。
///
/// # 示例
///
/// ```ignore
/// use searepo::DeleteFilter;
/// use sea_orm::*;
///
/// pub enum UserDelete {
/// ById(i64),
/// ByUsername(String),
/// }
///
/// impl DeleteFilter<Entity> for UserDelete {
/// fn to_select(self) -> Select<Entity> {
/// match self {
/// UserDelete::ById(id) => Entity::find_by_id(id),
/// UserDelete::ByUsername(username) => {
/// Entity::find().filter(Column::Username.eq(username))
/// }
/// }
/// }
/// }
/// ```