1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 'use strict';
- module.exports = {
- test: [
-
- { key: 'age@start', type: 'gte' },
- { key: 'age@end', type: 'lte' },
- { key: 'date@start', type: 'gte' },
- { key: 'date@end', type: 'lte' },
-
-
-
- ],
- security_guard_base: [
- { key: 'acceptance_date@start', type: 'gte' },
- { key: 'acceptance_date@end', type: 'lte' },
- ],
- company_base: [{ key: 'purpose', type: 'like' }],
- police_department: [{ key: 'num', type: 'orderBy', value: 'asc' }],
- baoan_work_warning: [{ key: 'warning_date', type: 'orderBy', value: 'desc' }],
- };
|