szpt-driver-api 1.0.21 → 1.0.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/authDuty.d.ts CHANGED
@@ -1,3 +1,17 @@
1
+ export declare class AddDictItem {
2
+ /** @format int32 */
3
+ index?: number;
4
+ value?: string;
5
+ "value2"?: string;
6
+ "value3"?: string;
7
+ "value4"?: string;
8
+ "value5"?: string;
9
+ }
10
+ export declare class AddDictItemRequest {
11
+ department?: string;
12
+ items?: AddDictItem[];
13
+ name?: string;
14
+ }
1
15
  export declare class AreaGroupReq {
2
16
  /** @format int64 */
3
17
  _version?: number;
@@ -77,6 +91,8 @@ export declare class AreaReq {
77
91
  _version?: number;
78
92
  /** 子区域列表 */
79
93
  areas?: AreaItemReq[];
94
+ /** 边框颜色 */
95
+ borderColor?: string;
80
96
  /** 区域颜色 */
81
97
  color?: string;
82
98
  /** @format int64 */
@@ -97,6 +113,8 @@ export declare class AreaReq {
97
113
  groupId?: number;
98
114
  /** 区域特征值 */
99
115
  hash?: string;
116
+ /** 图标 */
117
+ icon?: string;
100
118
  /** @format int64 */
101
119
  id?: number;
102
120
  /** 区域级别 */
@@ -108,8 +126,12 @@ export declare class AreaReq {
108
126
  margin?: number;
109
127
  /** 区域名称 */
110
128
  name?: string;
129
+ /** 备注 */
130
+ remark?: string;
111
131
  /** 标签 */
112
132
  tags?: string[];
133
+ /** UID */
134
+ uid?: string;
113
135
  }
114
136
  export declare class AreaRes {
115
137
  /** @format int64 */
@@ -117,6 +139,8 @@ export declare class AreaRes {
117
139
  areaType: "Area" | "Line" | "Point";
118
140
  /** 子区域列表 */
119
141
  areas: AreaItemRes[];
142
+ /** 边框颜色 */
143
+ borderColor: string;
120
144
  /** 区域颜色 */
121
145
  color: string;
122
146
  /** @format int64 */
@@ -138,6 +162,8 @@ export declare class AreaRes {
138
162
  groupId: number;
139
163
  /** 区域特征值 */
140
164
  hash: string;
165
+ /** 图标 */
166
+ icon: string;
141
167
  /** @format int64 */
142
168
  id: number;
143
169
  /** 区域级别 */
@@ -150,21 +176,28 @@ export declare class AreaRes {
150
176
  /** 区域名称 */
151
177
  name: string;
152
178
  points: AreaPoint[];
179
+ /** 备注 */
180
+ remark: string;
153
181
  /** 标签 */
154
182
  tags: string[];
183
+ /** UID */
184
+ uid: string;
155
185
  }
156
186
  export declare class AreaSnapshot {
157
187
  /** @format int64 */
158
188
  areaId: number;
159
189
  areas: AreaItem[];
190
+ borderColor: string;
160
191
  color: string;
161
192
  empty: boolean;
193
+ icon: string;
162
194
  /** @format int64 */
163
195
  id: number;
164
196
  level: string;
165
197
  /** @format int32 */
166
198
  margin: number;
167
199
  name: string;
200
+ remark: string;
168
201
  tags: string[];
169
202
  /** @format int32 */
170
203
  version: number;
@@ -173,13 +206,16 @@ export declare class AreaSnapshotReq {
173
206
  /** @format int64 */
174
207
  areaId?: number;
175
208
  areas?: AreaItemReq[];
209
+ borderColor?: string;
176
210
  color?: string;
211
+ icon?: string;
177
212
  /** @format int64 */
178
213
  id?: number;
179
214
  level?: string;
180
215
  /** @format int32 */
181
216
  margin?: number;
182
217
  name?: string;
218
+ remark?: string;
183
219
  tags?: string[];
184
220
  /** @format int32 */
185
221
  version?: number;
@@ -188,14 +224,17 @@ export declare class AreaSnapshotRes {
188
224
  /** @format int64 */
189
225
  areaId: number;
190
226
  areas: AreaItemRes[];
227
+ borderColor: string;
191
228
  color: string;
192
229
  empty: boolean;
230
+ icon: string;
193
231
  /** @format int64 */
194
232
  id: number;
195
233
  level: string;
196
234
  /** @format int32 */
197
235
  margin: number;
198
236
  name: string;
237
+ remark: string;
199
238
  tags: string[];
200
239
  /** @format int32 */
201
240
  version: number;
@@ -279,6 +318,8 @@ export declare class BatchScheduleArea {
279
318
  * @format int64
280
319
  */
281
320
  areaId?: number;
321
+ /** 自定义区域 */
322
+ customArea?: CustomAreaReq;
282
323
  /** 描述备注 */
283
324
  description?: string;
284
325
  /** 排班成员 */
@@ -312,12 +353,16 @@ export declare class CurrentCheckInSchedule {
312
353
  export declare class CustomArea {
313
354
  /** 子区域列表 */
314
355
  areas: AreaItem[];
356
+ /** 边框颜色 */
357
+ borderColor: string;
315
358
  /** 区域颜色 */
316
359
  color: string;
317
360
  /** 部门代码 */
318
361
  department: string;
319
362
  /** 描述 */
320
363
  description: string;
364
+ /** 区域图标 */
365
+ icon: string;
321
366
  /** 区域级别 */
322
367
  level: string;
323
368
  /**
@@ -327,18 +372,24 @@ export declare class CustomArea {
327
372
  margin: number;
328
373
  /** 区域名称 */
329
374
  name: string;
375
+ /** 区域备注 */
376
+ remark: string;
330
377
  /** 标签 */
331
378
  tags: string[];
332
379
  }
333
380
  export declare class CustomAreaReq {
334
381
  /** 子区域列表 */
335
382
  areas?: AreaItemReq[];
383
+ /** 边框颜色 */
384
+ borderColor?: string;
336
385
  /** 区域颜色 */
337
386
  color?: string;
338
387
  /** 部门代码 */
339
388
  department?: string;
340
389
  /** 描述 */
341
390
  description?: string;
391
+ /** 区域图标 */
392
+ icon?: string;
342
393
  /** 区域级别 */
343
394
  level?: string;
344
395
  /**
@@ -348,18 +399,24 @@ export declare class CustomAreaReq {
348
399
  margin?: number;
349
400
  /** 区域名称 */
350
401
  name?: string;
402
+ /** 区域备注 */
403
+ remark?: string;
351
404
  /** 标签 */
352
405
  tags?: string[];
353
406
  }
354
407
  export declare class CustomAreaRes {
355
408
  /** 子区域列表 */
356
409
  areas: AreaItemRes[];
410
+ /** 边框颜色 */
411
+ borderColor: string;
357
412
  /** 区域颜色 */
358
413
  color: string;
359
414
  /** 部门代码 */
360
415
  department: string;
361
416
  /** 描述 */
362
417
  description: string;
418
+ /** 区域图标 */
419
+ icon: string;
363
420
  /** 区域级别 */
364
421
  level: string;
365
422
  /**
@@ -369,13 +426,68 @@ export declare class CustomAreaRes {
369
426
  margin: number;
370
427
  /** 区域名称 */
371
428
  name: string;
429
+ /** 区域备注 */
430
+ remark: string;
372
431
  /** 标签 */
373
432
  tags: string[];
374
433
  }
434
+ export declare class DeptDictItem {
435
+ department: string;
436
+ disabled: boolean;
437
+ /** @format int64 */
438
+ id: number;
439
+ /** @format int32 */
440
+ index: number;
441
+ key: string;
442
+ value: string;
443
+ "value2": string;
444
+ "value3": string;
445
+ "value4": string;
446
+ "value5": string;
447
+ }
448
+ export declare class DeptDictionaryWithItems {
449
+ department: string;
450
+ description: string;
451
+ digest: EntityDigest;
452
+ /** @format int64 */
453
+ id: number;
454
+ items: DeptDictItem[];
455
+ /** @format int64 */
456
+ lastUpdateTime: number;
457
+ name: string;
458
+ section: string;
459
+ title: string;
460
+ }
375
461
  export declare class DeptLeaveRecordsRequest {
376
462
  /** 部门列表 */
377
463
  departments: string[];
378
464
  }
465
+ export declare class DictItem {
466
+ disabled: boolean;
467
+ /** @format int64 */
468
+ id: number;
469
+ /** @format int32 */
470
+ index: number;
471
+ key: string;
472
+ value: string;
473
+ "value2": string;
474
+ "value3": string;
475
+ "value4": string;
476
+ "value5": string;
477
+ }
478
+ export declare class DictionaryWithItems {
479
+ department: string;
480
+ description: string;
481
+ digest: EntityDigest;
482
+ /** @format int64 */
483
+ id: number;
484
+ items: DictItem[];
485
+ /** @format int64 */
486
+ lastUpdateTime: number;
487
+ name: string;
488
+ section: string;
489
+ title: string;
490
+ }
379
491
  export declare class DutyOnlineInfoDTO {
380
492
  /** 所属部门 */
381
493
  department: string;
@@ -463,9 +575,18 @@ export declare class DutyOnlineSummaryItem {
463
575
  */
464
576
  totalCount: number;
465
577
  }
578
+ export declare class EntityDigest {
579
+ digest: string;
580
+ valid: boolean;
581
+ }
466
582
  export declare class GeneralStatisticRow {
467
583
  bmdm: string;
468
584
  bmmc: string;
585
+ /**
586
+ * 排班内里程
587
+ * @format int32
588
+ */
589
+ mileage: number;
469
590
  /**
470
591
  * 缺少定位时长(分钟)
471
592
  * @format int32
@@ -539,12 +660,22 @@ export declare class GeneralStatisticRow {
539
660
  * @format int32
540
661
  */
541
662
  scheduleMinutes: number;
663
+ /**
664
+ * 应在线时长(分钟)
665
+ * @format int32
666
+ */
667
+ shouldOnlineMinutes: number;
542
668
  /**
543
669
  * 紧急任务时长
544
670
  * @format int32
545
671
  */
546
672
  urgentScheduleMinutes: number;
547
673
  user: string;
674
+ /**
675
+ * 工休时长
676
+ * @format int32
677
+ */
678
+ workBreakMinutes: number;
548
679
  }
549
680
  export declare class HolidayInfo {
550
681
  /**
@@ -615,14 +746,31 @@ export declare class LeaveRecordGroupByUser {
615
746
  }
616
747
  export declare class LeaveRecordQueryBean {
617
748
  deleted?: boolean;
618
- /** 部门,支持多选 */
619
- department?: string[];
749
+ /** 部门代码 */
750
+ department?: string;
751
+ /** 部门代码批量查询 */
752
+ departmentIn?: string[];
620
753
  /**
621
754
  * 结束时间
622
755
  * @format int64
623
756
  */
624
757
  end?: number;
625
758
  ids?: number[];
759
+ /**
760
+ * 是否包含下级部门岗位。和department字段配合使用
761
+ * @example false
762
+ */
763
+ includeChildrenDepartment?: boolean;
764
+ /**
765
+ * 是否包含上级部门岗位。和department字段配合使用
766
+ * @example false
767
+ */
768
+ includeParentDepartment?: boolean;
769
+ /**
770
+ * 是否只返回当前用户管理部门可见的数据
771
+ * @example false
772
+ */
773
+ onlyAdminDepartment?: boolean;
626
774
  orderBy?: string[];
627
775
  /** @format int32 */
628
776
  pageIndex?: number;
@@ -633,6 +781,16 @@ export declare class LeaveRecordQueryBean {
633
781
  * @format int64
634
782
  */
635
783
  start?: number;
784
+ /**
785
+ * 开始时间起始
786
+ * @format int64
787
+ */
788
+ timeBegin?: number;
789
+ /**
790
+ * 开始时间截止
791
+ * @format int64
792
+ */
793
+ timeEnd?: number;
636
794
  /**
637
795
  * 取交集时间
638
796
  * @example false
@@ -674,13 +832,13 @@ export declare class MakePositionScheduleRequest {
674
832
  * @format int64
675
833
  */
676
834
  areaId?: number;
677
- /** 岗位区域 */
678
- areas?: PositionAreaReq[];
679
835
  /**
680
836
  * 排班开始时间
681
837
  * @format int64
682
838
  */
683
839
  begin?: number;
840
+ /** 自定义区域 */
841
+ customArea?: CustomAreaReq;
684
842
  /** 部门 */
685
843
  department?: string;
686
844
  /** 排班描述 */
@@ -1031,14 +1189,6 @@ export declare class PositionAreaRes {
1031
1189
  /** @format double */
1032
1190
  radius: number;
1033
1191
  }
1034
- export declare class PositionAreaSimple {
1035
- /** @format double */
1036
- latitude: number;
1037
- /** @format double */
1038
- longitude: number;
1039
- /** @format double */
1040
- radius: number;
1041
- }
1042
1192
  export declare class PositionReq {
1043
1193
  /** @format int64 */
1044
1194
  _version?: number;
@@ -1271,6 +1421,11 @@ export declare class PositionUser {
1271
1421
  scheduleId: number;
1272
1422
  user: string;
1273
1423
  }
1424
+ export declare class RemoveDictItemRequest {
1425
+ department?: string;
1426
+ itemKeys?: string[];
1427
+ name?: string;
1428
+ }
1274
1429
  export declare class Schedule {
1275
1430
  /** @format int64 */
1276
1431
  _version: number;
@@ -1534,6 +1689,8 @@ export declare class ScheduleNotificationSimpleDTO {
1534
1689
  user: string;
1535
1690
  }
1536
1691
  export declare class ScheduleOption {
1692
+ /** @example false */
1693
+ autoCheckOut: boolean;
1537
1694
  /** @example false */
1538
1695
  msgNotifyWhenOutPositionArea: boolean;
1539
1696
  /** @example false */
@@ -1544,6 +1701,16 @@ export declare class ScheduleOption {
1544
1701
  remindCheckIn: boolean;
1545
1702
  }
1546
1703
  export declare class SchedulePlanDetailReq {
1704
+ /**
1705
+ * 区域ID
1706
+ * @format int64
1707
+ */
1708
+ areaId?: number;
1709
+ /**
1710
+ * 自动签退
1711
+ * @example false
1712
+ */
1713
+ autoCheckOut?: boolean;
1547
1714
  /**
1548
1715
  * 日期顺序
1549
1716
  * @format int32
@@ -1551,6 +1718,13 @@ export declare class SchedulePlanDetailReq {
1551
1718
  dayIndex?: number;
1552
1719
  /** @format int64 */
1553
1720
  id?: number;
1721
+ /** 成员 */
1722
+ members?: SchedulePlanMemberReq[];
1723
+ /**
1724
+ * 出区域时提醒
1725
+ * @example false
1726
+ */
1727
+ msgNotifyWhenOutPositionArea?: boolean;
1554
1728
  /** 巡逻线路详情 */
1555
1729
  patrolLine?: PatrolLineReq;
1556
1730
  /**
@@ -1558,6 +1732,16 @@ export declare class SchedulePlanDetailReq {
1558
1732
  * @format int64
1559
1733
  */
1560
1734
  patrolLineId?: number;
1735
+ /**
1736
+ * 无GPS定位时电话提醒
1737
+ * @example false
1738
+ */
1739
+ phoneNotifyWhenNoGps?: boolean;
1740
+ /**
1741
+ * 无心跳时电话提醒
1742
+ * @example false
1743
+ */
1744
+ phoneNotifyWhenNoHeartbeat?: boolean;
1561
1745
  /** 岗位详情 */
1562
1746
  position?: PositionReq;
1563
1747
  /**
@@ -1565,6 +1749,11 @@ export declare class SchedulePlanDetailReq {
1565
1749
  * @format int64
1566
1750
  */
1567
1751
  positionId?: number;
1752
+ /**
1753
+ * 签到提醒
1754
+ * @example false
1755
+ */
1756
+ remindCheckIn?: boolean;
1568
1757
  /**
1569
1758
  * 是否为休息日
1570
1759
  * @example false
@@ -1581,6 +1770,16 @@ export declare class SchedulePlanDetailReq {
1581
1770
  urgent?: boolean;
1582
1771
  }
1583
1772
  export declare class SchedulePlanDetailRes {
1773
+ /**
1774
+ * 区域ID
1775
+ * @format int64
1776
+ */
1777
+ areaId: number;
1778
+ /**
1779
+ * 自动签退
1780
+ * @example false
1781
+ */
1782
+ autoCheckOut: boolean;
1584
1783
  /**
1585
1784
  * 日期顺序
1586
1785
  * @format int32
@@ -1588,6 +1787,13 @@ export declare class SchedulePlanDetailRes {
1588
1787
  dayIndex: number;
1589
1788
  /** @format int64 */
1590
1789
  id: number;
1790
+ /** 成员 */
1791
+ members: SchedulePlanMemberRes[];
1792
+ /**
1793
+ * 出区域时提醒
1794
+ * @example false
1795
+ */
1796
+ msgNotifyWhenOutPositionArea: boolean;
1591
1797
  /** 巡逻线路详情 */
1592
1798
  patrolLine: PatrolLineRes;
1593
1799
  /**
@@ -1595,6 +1801,16 @@ export declare class SchedulePlanDetailRes {
1595
1801
  * @format int64
1596
1802
  */
1597
1803
  patrolLineId: number;
1804
+ /**
1805
+ * 无GPS定位时电话提醒
1806
+ * @example false
1807
+ */
1808
+ phoneNotifyWhenNoGps: boolean;
1809
+ /**
1810
+ * 无心跳时电话提醒
1811
+ * @example false
1812
+ */
1813
+ phoneNotifyWhenNoHeartbeat: boolean;
1598
1814
  /** 岗位详情 */
1599
1815
  position: PositionRes;
1600
1816
  /**
@@ -1602,6 +1818,11 @@ export declare class SchedulePlanDetailRes {
1602
1818
  * @format int64
1603
1819
  */
1604
1820
  positionId: number;
1821
+ /**
1822
+ * 签到提醒
1823
+ * @example false
1824
+ */
1825
+ remindCheckIn: boolean;
1605
1826
  /**
1606
1827
  * 是否为休息日
1607
1828
  * @example false
@@ -1641,6 +1862,11 @@ export declare class SchedulePlanReq {
1641
1862
  * @example false
1642
1863
  */
1643
1864
  applyWorkBreakRule?: boolean;
1865
+ /**
1866
+ * 自动签退
1867
+ * @example false
1868
+ */
1869
+ autoCheckOut?: boolean;
1644
1870
  /** @format int64 */
1645
1871
  createTime?: number;
1646
1872
  createUser?: string;
@@ -1718,6 +1944,11 @@ export declare class SchedulePlanRes {
1718
1944
  * @example false
1719
1945
  */
1720
1946
  applyWorkBreakRule: boolean;
1947
+ /**
1948
+ * 自动签退
1949
+ * @example false
1950
+ */
1951
+ autoCheckOut: boolean;
1721
1952
  /** @format int64 */
1722
1953
  createTime: number;
1723
1954
  createUser: string;
@@ -1992,7 +2223,6 @@ export declare class ScheduleSimpleDTO {
1992
2223
  members: string[];
1993
2224
  /** @format int64 */
1994
2225
  positionAreaId: number;
1995
- positionAreas: PositionAreaSimple[];
1996
2226
  /** @format int64 */
1997
2227
  positionId: number;
1998
2228
  positionName: string;
@@ -2110,12 +2340,39 @@ export declare class StayPoint {
2110
2340
  /** @format int64 */
2111
2341
  startTime: number;
2112
2342
  }
2343
+ export declare class TagGroup {
2344
+ description: string;
2345
+ name: string;
2346
+ title: string;
2347
+ }
2113
2348
  export declare class TimeRange {
2114
2349
  /** 开始时间。格式:HH:mm */
2115
2350
  begin: string;
2116
2351
  /** 结束时间。格式:HH:mm */
2117
2352
  end: string;
2118
2353
  }
2354
+ export declare class TodayScheduleCheckInRequest {
2355
+ /**
2356
+ * 纬度
2357
+ * @format double
2358
+ */
2359
+ latitude?: number;
2360
+ /**
2361
+ * 经度
2362
+ * @format double
2363
+ */
2364
+ longitude?: number;
2365
+ /**
2366
+ * 是否只签到最近的连班排班
2367
+ * @example false
2368
+ */
2369
+ onlyConsecutiveSchedule?: boolean;
2370
+ /**
2371
+ * 时间。不传则以当前系统时间为准
2372
+ * @format int64
2373
+ */
2374
+ time?: number;
2375
+ }
2119
2376
  export declare class UrgentSchedule {
2120
2377
  /**
2121
2378
  * 结束时间
@@ -2232,8 +2489,6 @@ export declare class UserTraceQueryBean {
2232
2489
  positionTagsNotIn?: string[];
2233
2490
  /** 高德轨迹查询参数recoup */
2234
2491
  recoup?: string;
2235
- /** 服务名称 */
2236
- serviceName?: string;
2237
2492
  /**
2238
2493
  * 获取点位数量(如果只是为了获取轨迹长度的话,建议填1)
2239
2494
  * @format int32
@@ -2361,6 +2616,11 @@ export declare class WorkBreakRuleDTO {
2361
2616
  * @format int32
2362
2617
  */
2363
2618
  maxConcurrentWorkBreakPerson: number;
2619
+ /**
2620
+ * 最多允许多少人同时休息(比例,0.0 ~ 1.0) (-1 表示不限制)
2621
+ * @format float
2622
+ */
2623
+ maxConcurrentWorkBreakPersonPercent: number;
2364
2624
  /**
2365
2625
  * 最多休息次数 (-1 表示不限制)
2366
2626
  * @format int32
@@ -2378,6 +2638,11 @@ export declare class WorkBreakRuleDTO {
2378
2638
  * @format int32
2379
2639
  */
2380
2640
  maxWorkBreakDuration: number;
2641
+ /**
2642
+ * 休息结束到下次申请的最小时间间隔 (秒, -1 表示不限制)
2643
+ * @format int32
2644
+ */
2645
+ minGapDuration: number;
2381
2646
  /**
2382
2647
  * 是否需要管理员审核
2383
2648
  * @example false
@@ -2425,6 +2690,11 @@ export declare class WorkBreakRuleDTOReq {
2425
2690
  * @format int32
2426
2691
  */
2427
2692
  maxConcurrentWorkBreakPerson?: number;
2693
+ /**
2694
+ * 最多允许多少人同时休息(比例,0.0 ~ 1.0) (-1 表示不限制)
2695
+ * @format float
2696
+ */
2697
+ maxConcurrentWorkBreakPersonPercent?: number;
2428
2698
  /**
2429
2699
  * 最多休息次数 (-1 表示不限制)
2430
2700
  * @format int32
@@ -2442,6 +2712,11 @@ export declare class WorkBreakRuleDTOReq {
2442
2712
  * @format int32
2443
2713
  */
2444
2714
  maxWorkBreakDuration?: number;
2715
+ /**
2716
+ * 休息结束到下次申请的最小时间间隔 (秒, -1 表示不限制)
2717
+ * @format int32
2718
+ */
2719
+ minGapDuration?: number;
2445
2720
  /**
2446
2721
  * 是否需要管理员审核
2447
2722
  * @example false
@@ -2489,6 +2764,11 @@ export declare class WorkBreakRuleDTORes {
2489
2764
  * @format int32
2490
2765
  */
2491
2766
  maxConcurrentWorkBreakPerson: number;
2767
+ /**
2768
+ * 最多允许多少人同时休息(比例,0.0 ~ 1.0) (-1 表示不限制)
2769
+ * @format float
2770
+ */
2771
+ maxConcurrentWorkBreakPersonPercent: number;
2492
2772
  /**
2493
2773
  * 最多休息次数 (-1 表示不限制)
2494
2774
  * @format int32
@@ -2506,6 +2786,11 @@ export declare class WorkBreakRuleDTORes {
2506
2786
  * @format int32
2507
2787
  */
2508
2788
  maxWorkBreakDuration: number;
2789
+ /**
2790
+ * 休息结束到下次申请的最小时间间隔 (秒, -1 表示不限制)
2791
+ * @format int32
2792
+ */
2793
+ minGapDuration: number;
2509
2794
  /**
2510
2795
  * 是否需要管理员审核
2511
2796
  * @example false
@@ -2547,6 +2832,8 @@ export declare class GetAreaParams {
2547
2832
  includeChildrenDepartment?: boolean;
2548
2833
  /** 是否包含上级部门岗位。和department字段配合使用 */
2549
2834
  includeParentDepartment?: boolean;
2835
+ /** 名称查询 */
2836
+ name?: string;
2550
2837
  /** 名称模糊查询 */
2551
2838
  nameLike?: string;
2552
2839
  /** 是否只返回当前用户管理部门可见的数据 */
@@ -2558,7 +2845,10 @@ export declare class GetAreaParams {
2558
2845
  pageSize?: number;
2559
2846
  /** Tag。支持批量查询 */
2560
2847
  tags?: string[];
2848
+ /** UID */
2849
+ uid?: string;
2561
2850
  }
2851
+ export declare type AreaBatchPayload = AreaReq[];
2562
2852
  export declare class GetAreaGroupParams {
2563
2853
  deleted?: boolean;
2564
2854
  /** 部门代码 */
@@ -2666,14 +2956,22 @@ export declare class WorkdayNextParams {
2666
2956
  }
2667
2957
  export declare class GetLeaveRecordParams {
2668
2958
  deleted?: boolean;
2669
- /** 部门,支持多选 */
2670
- department?: string[];
2959
+ /** 部门代码 */
2960
+ department?: string;
2961
+ /** 部门代码批量查询 */
2962
+ departmentIn?: string[];
2671
2963
  /**
2672
2964
  * 结束时间
2673
2965
  * @format int64
2674
2966
  */
2675
2967
  end?: number;
2676
2968
  ids?: number[];
2969
+ /** 是否包含下级部门岗位。和department字段配合使用 */
2970
+ includeChildrenDepartment?: boolean;
2971
+ /** 是否包含上级部门岗位。和department字段配合使用 */
2972
+ includeParentDepartment?: boolean;
2973
+ /** 是否只返回当前用户管理部门可见的数据 */
2974
+ onlyAdminDepartment?: boolean;
2677
2975
  orderBy?: string[];
2678
2976
  /** @format int32 */
2679
2977
  pageIndex?: number;
@@ -2684,6 +2982,16 @@ export declare class GetLeaveRecordParams {
2684
2982
  * @format int64
2685
2983
  */
2686
2984
  start?: number;
2985
+ /**
2986
+ * 开始时间起始
2987
+ * @format int64
2988
+ */
2989
+ timeBegin?: number;
2990
+ /**
2991
+ * 开始时间截止
2992
+ * @format int64
2993
+ */
2994
+ timeEnd?: number;
2687
2995
  /** 取交集时间 */
2688
2996
  timeMixed?: boolean;
2689
2997
  /** 请假类型。支持多选 */
@@ -3021,6 +3329,9 @@ export declare class PositionUsersParams {
3021
3329
  /** @format int64 */
3022
3330
  timeEnd?: number;
3023
3331
  }
3332
+ export declare class DeletePositionHardByIdParams {
3333
+ id: string;
3334
+ }
3024
3335
  export declare class GetPositionTypeParams {
3025
3336
  deleted?: boolean;
3026
3337
  /** 部门代码 */
@@ -3090,7 +3401,7 @@ export declare class GetScheduleParams {
3090
3401
  deleted?: boolean;
3091
3402
  /** 部门代码 */
3092
3403
  department?: string;
3093
- /** 部门代码。支持批量查询 */
3404
+ /** 部门代码批量查询 */
3094
3405
  departmentIn?: string[];
3095
3406
  /**
3096
3407
  * 结束时间,精确匹配
@@ -3108,10 +3419,14 @@ export declare class GetScheduleParams {
3108
3419
  */
3109
3420
  endTimeEnd?: number;
3110
3421
  ids?: number[];
3111
- /** 是否包含子部门排班,和department字段配合使用 */
3422
+ /** 是否包含下级部门岗位。和department字段配合使用 */
3112
3423
  includeChildrenDepartment?: boolean;
3424
+ /** 是否包含上级部门岗位。和department字段配合使用 */
3425
+ includeParentDepartment?: boolean;
3113
3426
  /** 是否只返回当前用户管理部门可见的数据 */
3114
3427
  onlyAdminDepartment?: boolean;
3428
+ /** 根据option过滤 */
3429
+ optionAutoCheckOut?: boolean;
3115
3430
  /** option条件组合逻辑. AND 或 OR */
3116
3431
  optionCondition?: "AND" | "OR";
3117
3432
  /** 根据option过滤 */
@@ -3120,6 +3435,8 @@ export declare class GetScheduleParams {
3120
3435
  optionPhoneNotifyWhenNoHeartbeat?: boolean;
3121
3436
  /** 根据option过滤 */
3122
3437
  optionRemindCheckIn?: boolean;
3438
+ /** 根据option过滤 */
3439
+ optionWhenOutPositionArea?: boolean;
3123
3440
  orderBy?: string[];
3124
3441
  /** @format int32 */
3125
3442
  pageIndex?: number;
@@ -3151,8 +3468,6 @@ export declare class GetScheduleParams {
3151
3468
  timeEnd?: number;
3152
3469
  /** 排班内用户 */
3153
3470
  user?: string;
3154
- /** 关联查询岗位区域 */
3155
- withPositionAreas?: boolean;
3156
3471
  }
3157
3472
  export declare class ScheduleMyMonthParams {
3158
3473
  /**
@@ -3252,7 +3567,7 @@ export declare class ScheduleSimpleParams {
3252
3567
  deleted?: boolean;
3253
3568
  /** 部门代码 */
3254
3569
  department?: string;
3255
- /** 部门代码。支持批量查询 */
3570
+ /** 部门代码批量查询 */
3256
3571
  departmentIn?: string[];
3257
3572
  /**
3258
3573
  * 结束时间,精确匹配
@@ -3270,10 +3585,14 @@ export declare class ScheduleSimpleParams {
3270
3585
  */
3271
3586
  endTimeEnd?: number;
3272
3587
  ids?: number[];
3273
- /** 是否包含子部门排班,和department字段配合使用 */
3588
+ /** 是否包含下级部门岗位。和department字段配合使用 */
3274
3589
  includeChildrenDepartment?: boolean;
3590
+ /** 是否包含上级部门岗位。和department字段配合使用 */
3591
+ includeParentDepartment?: boolean;
3275
3592
  /** 是否只返回当前用户管理部门可见的数据 */
3276
3593
  onlyAdminDepartment?: boolean;
3594
+ /** 根据option过滤 */
3595
+ optionAutoCheckOut?: boolean;
3277
3596
  /** option条件组合逻辑. AND 或 OR */
3278
3597
  optionCondition?: "AND" | "OR";
3279
3598
  /** 根据option过滤 */
@@ -3282,6 +3601,8 @@ export declare class ScheduleSimpleParams {
3282
3601
  optionPhoneNotifyWhenNoHeartbeat?: boolean;
3283
3602
  /** 根据option过滤 */
3284
3603
  optionRemindCheckIn?: boolean;
3604
+ /** 根据option过滤 */
3605
+ optionWhenOutPositionArea?: boolean;
3285
3606
  orderBy?: string[];
3286
3607
  /** @format int32 */
3287
3608
  pageIndex?: number;
@@ -3313,8 +3634,6 @@ export declare class ScheduleSimpleParams {
3313
3634
  timeEnd?: number;
3314
3635
  /** 排班内用户 */
3315
3636
  user?: string;
3316
- /** 关联查询岗位区域 */
3317
- withPositionAreas?: boolean;
3318
3637
  }
3319
3638
  export declare class ScheduleSimpleExtremeSimpleParams {
3320
3639
  /** 只返回正在进行中的排班 */
@@ -3334,7 +3653,7 @@ export declare class ScheduleSimpleExtremeSimpleParams {
3334
3653
  deleted?: boolean;
3335
3654
  /** 部门代码 */
3336
3655
  department?: string;
3337
- /** 部门代码。支持批量查询 */
3656
+ /** 部门代码批量查询 */
3338
3657
  departmentIn?: string[];
3339
3658
  /**
3340
3659
  * 结束时间,精确匹配
@@ -3352,10 +3671,14 @@ export declare class ScheduleSimpleExtremeSimpleParams {
3352
3671
  */
3353
3672
  endTimeEnd?: number;
3354
3673
  ids?: number[];
3355
- /** 是否包含子部门排班,和department字段配合使用 */
3674
+ /** 是否包含下级部门岗位。和department字段配合使用 */
3356
3675
  includeChildrenDepartment?: boolean;
3676
+ /** 是否包含上级部门岗位。和department字段配合使用 */
3677
+ includeParentDepartment?: boolean;
3357
3678
  /** 是否只返回当前用户管理部门可见的数据 */
3358
3679
  onlyAdminDepartment?: boolean;
3680
+ /** 根据option过滤 */
3681
+ optionAutoCheckOut?: boolean;
3359
3682
  /** option条件组合逻辑. AND 或 OR */
3360
3683
  optionCondition?: "AND" | "OR";
3361
3684
  /** 根据option过滤 */
@@ -3364,6 +3687,8 @@ export declare class ScheduleSimpleExtremeSimpleParams {
3364
3687
  optionPhoneNotifyWhenNoHeartbeat?: boolean;
3365
3688
  /** 根据option过滤 */
3366
3689
  optionRemindCheckIn?: boolean;
3690
+ /** 根据option过滤 */
3691
+ optionWhenOutPositionArea?: boolean;
3367
3692
  orderBy?: string[];
3368
3693
  /** @format int32 */
3369
3694
  pageIndex?: number;
@@ -3395,8 +3720,6 @@ export declare class ScheduleSimpleExtremeSimpleParams {
3395
3720
  timeEnd?: number;
3396
3721
  /** 排班内用户 */
3397
3722
  user?: string;
3398
- /** 关联查询岗位区域 */
3399
- withPositionAreas?: boolean;
3400
3723
  }
3401
3724
  export declare class ScheduleSimpleGroupByDayAreaParams {
3402
3725
  /** 只返回正在进行中的排班 */
@@ -3418,7 +3741,7 @@ export declare class ScheduleSimpleGroupByDayAreaParams {
3418
3741
  deleted?: boolean;
3419
3742
  /** 部门代码 */
3420
3743
  department?: string;
3421
- /** 部门代码。支持批量查询 */
3744
+ /** 部门代码批量查询 */
3422
3745
  departmentIn?: string[];
3423
3746
  /**
3424
3747
  * 结束时间,精确匹配
@@ -3436,10 +3759,14 @@ export declare class ScheduleSimpleGroupByDayAreaParams {
3436
3759
  */
3437
3760
  endTimeEnd?: number;
3438
3761
  ids?: number[];
3439
- /** 是否包含子部门排班,和department字段配合使用 */
3762
+ /** 是否包含下级部门岗位。和department字段配合使用 */
3440
3763
  includeChildrenDepartment?: boolean;
3764
+ /** 是否包含上级部门岗位。和department字段配合使用 */
3765
+ includeParentDepartment?: boolean;
3441
3766
  /** 是否只返回当前用户管理部门可见的数据 */
3442
3767
  onlyAdminDepartment?: boolean;
3768
+ /** 根据option过滤 */
3769
+ optionAutoCheckOut?: boolean;
3443
3770
  /** option条件组合逻辑. AND 或 OR */
3444
3771
  optionCondition?: "AND" | "OR";
3445
3772
  /** 根据option过滤 */
@@ -3448,6 +3775,8 @@ export declare class ScheduleSimpleGroupByDayAreaParams {
3448
3775
  optionPhoneNotifyWhenNoHeartbeat?: boolean;
3449
3776
  /** 根据option过滤 */
3450
3777
  optionRemindCheckIn?: boolean;
3778
+ /** 根据option过滤 */
3779
+ optionWhenOutPositionArea?: boolean;
3451
3780
  orderBy?: string[];
3452
3781
  /** @format int32 */
3453
3782
  pageIndex?: number;
@@ -3479,8 +3808,6 @@ export declare class ScheduleSimpleGroupByDayAreaParams {
3479
3808
  timeEnd?: number;
3480
3809
  /** 排班内用户 */
3481
3810
  user?: string;
3482
- /** 关联查询岗位区域 */
3483
- withPositionAreas?: boolean;
3484
3811
  }
3485
3812
  export declare class ScheduleSimpleGroupByUserParams {
3486
3813
  /** 只返回正在进行中的排班 */
@@ -3500,7 +3827,7 @@ export declare class ScheduleSimpleGroupByUserParams {
3500
3827
  deleted?: boolean;
3501
3828
  /** 部门代码 */
3502
3829
  department?: string;
3503
- /** 部门代码。支持批量查询 */
3830
+ /** 部门代码批量查询 */
3504
3831
  departmentIn?: string[];
3505
3832
  /**
3506
3833
  * 结束时间,精确匹配
@@ -3518,10 +3845,14 @@ export declare class ScheduleSimpleGroupByUserParams {
3518
3845
  */
3519
3846
  endTimeEnd?: number;
3520
3847
  ids?: number[];
3521
- /** 是否包含子部门排班,和department字段配合使用 */
3848
+ /** 是否包含下级部门岗位。和department字段配合使用 */
3522
3849
  includeChildrenDepartment?: boolean;
3850
+ /** 是否包含上级部门岗位。和department字段配合使用 */
3851
+ includeParentDepartment?: boolean;
3523
3852
  /** 是否只返回当前用户管理部门可见的数据 */
3524
3853
  onlyAdminDepartment?: boolean;
3854
+ /** 根据option过滤 */
3855
+ optionAutoCheckOut?: boolean;
3525
3856
  /** option条件组合逻辑. AND 或 OR */
3526
3857
  optionCondition?: "AND" | "OR";
3527
3858
  /** 根据option过滤 */
@@ -3530,6 +3861,8 @@ export declare class ScheduleSimpleGroupByUserParams {
3530
3861
  optionPhoneNotifyWhenNoHeartbeat?: boolean;
3531
3862
  /** 根据option过滤 */
3532
3863
  optionRemindCheckIn?: boolean;
3864
+ /** 根据option过滤 */
3865
+ optionWhenOutPositionArea?: boolean;
3533
3866
  orderBy?: string[];
3534
3867
  /** @format int32 */
3535
3868
  pageIndex?: number;
@@ -3561,12 +3894,6 @@ export declare class ScheduleSimpleGroupByUserParams {
3561
3894
  timeEnd?: number;
3562
3895
  /** 排班内用户 */
3563
3896
  user?: string;
3564
- /** 关联查询岗位区域 */
3565
- withPositionAreas?: boolean;
3566
- }
3567
- export declare class ScheduleStatisticParams {
3568
- /** day */
3569
- day: string;
3570
3897
  }
3571
3898
  export declare class ScheduleStatisticGeneralParams {
3572
3899
  /** 只返回正在进行中的排班 */
@@ -3586,7 +3913,7 @@ export declare class ScheduleStatisticGeneralParams {
3586
3913
  deleted?: boolean;
3587
3914
  /** 部门代码 */
3588
3915
  department?: string;
3589
- /** 部门代码。支持批量查询 */
3916
+ /** 部门代码批量查询 */
3590
3917
  departmentIn?: string[];
3591
3918
  /**
3592
3919
  * 结束时间,精确匹配
@@ -3604,10 +3931,14 @@ export declare class ScheduleStatisticGeneralParams {
3604
3931
  */
3605
3932
  endTimeEnd?: number;
3606
3933
  ids?: number[];
3607
- /** 是否包含子部门排班,和department字段配合使用 */
3934
+ /** 是否包含下级部门岗位。和department字段配合使用 */
3608
3935
  includeChildrenDepartment?: boolean;
3936
+ /** 是否包含上级部门岗位。和department字段配合使用 */
3937
+ includeParentDepartment?: boolean;
3609
3938
  /** 是否只返回当前用户管理部门可见的数据 */
3610
3939
  onlyAdminDepartment?: boolean;
3940
+ /** 根据option过滤 */
3941
+ optionAutoCheckOut?: boolean;
3611
3942
  /** option条件组合逻辑. AND 或 OR */
3612
3943
  optionCondition?: "AND" | "OR";
3613
3944
  /** 根据option过滤 */
@@ -3616,6 +3947,8 @@ export declare class ScheduleStatisticGeneralParams {
3616
3947
  optionPhoneNotifyWhenNoHeartbeat?: boolean;
3617
3948
  /** 根据option过滤 */
3618
3949
  optionRemindCheckIn?: boolean;
3950
+ /** 根据option过滤 */
3951
+ optionWhenOutPositionArea?: boolean;
3619
3952
  orderBy?: string[];
3620
3953
  /** @format int32 */
3621
3954
  pageIndex?: number;
@@ -3647,8 +3980,10 @@ export declare class ScheduleStatisticGeneralParams {
3647
3980
  timeEnd?: number;
3648
3981
  /** 排班内用户 */
3649
3982
  user?: string;
3650
- /** 关联查询岗位区域 */
3651
- withPositionAreas?: boolean;
3983
+ }
3984
+ export declare class ScheduleStatisticGeneralByDayParams {
3985
+ /** day */
3986
+ day: string;
3652
3987
  }
3653
3988
  export declare class ScheduleStatisticGeneralExportParams {
3654
3989
  /** 只返回正在进行中的排班 */
@@ -3668,7 +4003,7 @@ export declare class ScheduleStatisticGeneralExportParams {
3668
4003
  deleted?: boolean;
3669
4004
  /** 部门代码 */
3670
4005
  department?: string;
3671
- /** 部门代码。支持批量查询 */
4006
+ /** 部门代码批量查询 */
3672
4007
  departmentIn?: string[];
3673
4008
  /**
3674
4009
  * 结束时间,精确匹配
@@ -3686,10 +4021,14 @@ export declare class ScheduleStatisticGeneralExportParams {
3686
4021
  */
3687
4022
  endTimeEnd?: number;
3688
4023
  ids?: number[];
3689
- /** 是否包含子部门排班,和department字段配合使用 */
4024
+ /** 是否包含下级部门岗位。和department字段配合使用 */
3690
4025
  includeChildrenDepartment?: boolean;
4026
+ /** 是否包含上级部门岗位。和department字段配合使用 */
4027
+ includeParentDepartment?: boolean;
3691
4028
  /** 是否只返回当前用户管理部门可见的数据 */
3692
4029
  onlyAdminDepartment?: boolean;
4030
+ /** 根据option过滤 */
4031
+ optionAutoCheckOut?: boolean;
3693
4032
  /** option条件组合逻辑. AND 或 OR */
3694
4033
  optionCondition?: "AND" | "OR";
3695
4034
  /** 根据option过滤 */
@@ -3698,6 +4037,8 @@ export declare class ScheduleStatisticGeneralExportParams {
3698
4037
  optionPhoneNotifyWhenNoHeartbeat?: boolean;
3699
4038
  /** 根据option过滤 */
3700
4039
  optionRemindCheckIn?: boolean;
4040
+ /** 根据option过滤 */
4041
+ optionWhenOutPositionArea?: boolean;
3701
4042
  orderBy?: string[];
3702
4043
  /** @format int32 */
3703
4044
  pageIndex?: number;
@@ -3729,8 +4070,18 @@ export declare class ScheduleStatisticGeneralExportParams {
3729
4070
  timeEnd?: number;
3730
4071
  /** 排班内用户 */
3731
4072
  user?: string;
3732
- /** 关联查询岗位区域 */
3733
- withPositionAreas?: boolean;
4073
+ }
4074
+ export declare class TagsByNameParams {
4075
+ /** department */
4076
+ department: string;
4077
+ /** name */
4078
+ name: string;
4079
+ }
4080
+ export declare class TagsAllByNameParams {
4081
+ /** department */
4082
+ department: string;
4083
+ /** name */
4084
+ name: string;
3734
4085
  }
3735
4086
  export declare class GetUserGroupParams {
3736
4087
  deleted?: boolean;
@@ -3932,6 +4283,20 @@ declare class Api {
3932
4283
  * @response `404` `void` Not Found
3933
4284
  */
3934
4285
  postArea: (data: AreaReq, axiosConfig?: AxiosRequestConfig) => Promise<number>;
4286
+ /**
4287
+ * No description
4288
+ *
4289
+ * @tags area
4290
+ * @name AreaBatch
4291
+ * @summary 批量新增或修改区域
4292
+ * @request POST:/auth-duty/duty/area/batch
4293
+ * @response `200` `(number)[]` OK
4294
+ * @response `201` `void` Created
4295
+ * @response `401` `void` Unauthorized
4296
+ * @response `403` `void` Forbidden
4297
+ * @response `404` `void` Not Found
4298
+ */
4299
+ areaBatch: (data: AreaBatchPayload, axiosConfig?: AxiosRequestConfig) => Promise<number[]>;
3935
4300
  /**
3936
4301
  * No description
3937
4302
  *
@@ -4715,7 +5080,7 @@ declare class Api {
4715
5080
  * @response `401` `void` Unauthorized
4716
5081
  * @response `403` `void` Forbidden
4717
5082
  */
4718
- deletePositionHardById: (id: number, axiosConfig?: AxiosRequestConfig) => Promise<void>;
5083
+ deletePositionHardById: ({ id, ...query }: DeletePositionHardByIdParams, axiosConfig?: AxiosRequestConfig) => Promise<void>;
4719
5084
  /**
4720
5085
  * No description
4721
5086
  *
@@ -4847,13 +5212,39 @@ declare class Api {
4847
5212
  * @name ScheduleCheckInToday
4848
5213
  * @summary 签到当日即将开始或尚未结束的排班
4849
5214
  * @request POST:/auth-duty/duty/schedule/check-in-today
4850
- * @response `200` `void` OK
5215
+ * @response `200` `(ScheduleExtremeSimple)[]` OK
4851
5216
  * @response `201` `void` Created
4852
5217
  * @response `401` `void` Unauthorized
4853
5218
  * @response `403` `void` Forbidden
4854
5219
  * @response `404` `void` Not Found
4855
5220
  */
4856
- scheduleCheckInToday: (data: ScheduleCheckRequest, axiosConfig?: AxiosRequestConfig) => Promise<void>;
5221
+ scheduleCheckInToday: (data: TodayScheduleCheckInRequest, axiosConfig?: AxiosRequestConfig) => Promise<ScheduleExtremeSimple[]>;
5222
+ /**
5223
+ * No description
5224
+ *
5225
+ * @tags schedule
5226
+ * @name ScheduleCheckInTodayPreview
5227
+ * @summary 查看当前用户当日即将开始或尚未结束的排班
5228
+ * @request GET:/auth-duty/duty/schedule/check-in-today/preview
5229
+ * @response `200` `(ScheduleSimpleDTO)[]` OK
5230
+ * @response `401` `void` Unauthorized
5231
+ * @response `403` `void` Forbidden
5232
+ * @response `404` `void` Not Found
5233
+ */
5234
+ scheduleCheckInTodayPreview: (axiosConfig?: AxiosRequestConfig) => Promise<ScheduleSimpleDTO[]>;
5235
+ /**
5236
+ * No description
5237
+ *
5238
+ * @tags schedule
5239
+ * @name ScheduleCheckInTodayPreviewByUser
5240
+ * @summary 查看指定用户当日即将开始或尚未结束的排班
5241
+ * @request GET:/auth-duty/duty/schedule/check-in-today/preview/{user}
5242
+ * @response `200` `(ScheduleSimpleDTO)[]` OK
5243
+ * @response `401` `void` Unauthorized
5244
+ * @response `403` `void` Forbidden
5245
+ * @response `404` `void` Not Found
5246
+ */
5247
+ scheduleCheckInTodayPreviewByUser: (user: string, axiosConfig?: AxiosRequestConfig) => Promise<ScheduleSimpleDTO[]>;
4857
5248
  /**
4858
5249
  * No description
4859
5250
  *
@@ -4861,13 +5252,13 @@ declare class Api {
4861
5252
  * @name ScheduleCheckOutToday
4862
5253
  * @summary 签退所有当日已开始的排班
4863
5254
  * @request POST:/auth-duty/duty/schedule/check-out-today
4864
- * @response `200` `void` OK
5255
+ * @response `200` `(ScheduleExtremeSimple)[]` OK
4865
5256
  * @response `201` `void` Created
4866
5257
  * @response `401` `void` Unauthorized
4867
5258
  * @response `403` `void` Forbidden
4868
5259
  * @response `404` `void` Not Found
4869
5260
  */
4870
- scheduleCheckOutToday: (data: ScheduleCheckRequest, axiosConfig?: AxiosRequestConfig) => Promise<void>;
5261
+ scheduleCheckOutToday: (data: ScheduleCheckRequest, axiosConfig?: AxiosRequestConfig) => Promise<ScheduleExtremeSimple[]>;
4871
5262
  /**
4872
5263
  * No description
4873
5264
  *
@@ -4888,13 +5279,13 @@ declare class Api {
4888
5279
  * @name ScheduleCheckInByScheduleId
4889
5280
  * @summary 签到
4890
5281
  * @request POST:/auth-duty/duty/schedule/{scheduleId}/check-in
4891
- * @response `200` `void` OK
5282
+ * @response `200` `(ScheduleExtremeSimple)[]` OK
4892
5283
  * @response `201` `void` Created
4893
5284
  * @response `401` `void` Unauthorized
4894
5285
  * @response `403` `void` Forbidden
4895
5286
  * @response `404` `void` Not Found
4896
5287
  */
4897
- scheduleCheckInByScheduleId: (scheduleId: number, data: ScheduleCheckRequest, axiosConfig?: AxiosRequestConfig) => Promise<void>;
5288
+ scheduleCheckInByScheduleId: (scheduleId: number, data: ScheduleCheckRequest, axiosConfig?: AxiosRequestConfig) => Promise<ScheduleExtremeSimple[]>;
4898
5289
  /**
4899
5290
  * No description
4900
5291
  *
@@ -5335,35 +5726,35 @@ declare class Api {
5335
5726
  * No description
5336
5727
  *
5337
5728
  * @tags scheduleStatistic
5338
- * @name ScheduleStatistic
5339
- * @summary 一般内容统计 - 按天
5340
- * @request POST:/auth-duty/duty/schedule-statistic
5729
+ * @name ScheduleStatisticGeneral
5730
+ * @summary 勤务排班及在线情况统计
5731
+ * @request GET:/auth-duty/duty/schedule-statistic/general
5341
5732
  * @response `200` `(GeneralStatisticRow)[]` OK
5342
- * @response `201` `void` Created
5343
5733
  * @response `401` `void` Unauthorized
5344
5734
  * @response `403` `void` Forbidden
5345
5735
  * @response `404` `void` Not Found
5346
5736
  */
5347
- scheduleStatistic: (query: ScheduleStatisticParams, axiosConfig?: AxiosRequestConfig) => Promise<GeneralStatisticRow[]>;
5737
+ scheduleStatisticGeneral: (query: ScheduleStatisticGeneralParams, axiosConfig?: AxiosRequestConfig) => Promise<GeneralStatisticRow[]>;
5348
5738
  /**
5349
5739
  * No description
5350
5740
  *
5351
5741
  * @tags scheduleStatistic
5352
- * @name ScheduleStatisticGeneral
5353
- * @summary 一般内容统计
5354
- * @request GET:/auth-duty/duty/schedule-statistic/general
5742
+ * @name ScheduleStatisticGeneralByDay
5743
+ * @summary 勤务排班及在线情况统计 - 按天
5744
+ * @request POST:/auth-duty/duty/schedule-statistic/general-by-day
5355
5745
  * @response `200` `(GeneralStatisticRow)[]` OK
5746
+ * @response `201` `void` Created
5356
5747
  * @response `401` `void` Unauthorized
5357
5748
  * @response `403` `void` Forbidden
5358
5749
  * @response `404` `void` Not Found
5359
5750
  */
5360
- scheduleStatisticGeneral: (query: ScheduleStatisticGeneralParams, axiosConfig?: AxiosRequestConfig) => Promise<GeneralStatisticRow[]>;
5751
+ scheduleStatisticGeneralByDay: (query: ScheduleStatisticGeneralByDayParams, axiosConfig?: AxiosRequestConfig) => Promise<GeneralStatisticRow[]>;
5361
5752
  /**
5362
5753
  * No description
5363
5754
  *
5364
5755
  * @tags scheduleStatistic
5365
5756
  * @name ScheduleStatisticGeneralExport
5366
- * @summary 一般内容统计(导出Excel)
5757
+ * @summary 勤务排班及在线情况统计(导出Excel)
5367
5758
  * @request GET:/auth-duty/duty/schedule-statistic/general/export
5368
5759
  * @response `200` `void` OK
5369
5760
  * @response `401` `void` Unauthorized
@@ -5402,6 +5793,74 @@ declare class Api {
5402
5793
  */
5403
5794
  scheduleTraceByUsername: (username: string, data: UserTraceQueryBean, axiosConfig?: AxiosRequestConfig) => Promise<Type用户轨迹>;
5404
5795
  };
5796
+ tags: {
5797
+ /**
5798
+ * No description
5799
+ *
5800
+ * @tags tags
5801
+ * @name Tags
5802
+ * @summary 获取可用标签组列表
5803
+ * @request GET:/auth-duty/duty/tags
5804
+ * @response `200` `(TagGroup)[]` OK
5805
+ * @response `401` `void` Unauthorized
5806
+ * @response `403` `void` Forbidden
5807
+ * @response `404` `void` Not Found
5808
+ */
5809
+ tags: (axiosConfig?: AxiosRequestConfig) => Promise<TagGroup[]>;
5810
+ /**
5811
+ * No description
5812
+ *
5813
+ * @tags tags
5814
+ * @name TagsByName
5815
+ * @summary 获取部门标签项
5816
+ * @request GET:/auth-duty/duty/tags/{name}
5817
+ * @response `200` `DictionaryWithItems` OK
5818
+ * @response `401` `void` Unauthorized
5819
+ * @response `403` `void` Forbidden
5820
+ * @response `404` `void` Not Found
5821
+ */
5822
+ tagsByName: ({ name, ...query }: TagsByNameParams, axiosConfig?: AxiosRequestConfig) => Promise<DictionaryWithItems>;
5823
+ /**
5824
+ * No description
5825
+ *
5826
+ * @tags tags
5827
+ * @name TagsAddItemsByName
5828
+ * @summary 新增标签项目
5829
+ * @request POST:/auth-duty/duty/tags/{name}/add-items
5830
+ * @response `200` `void` OK
5831
+ * @response `201` `void` Created
5832
+ * @response `401` `void` Unauthorized
5833
+ * @response `403` `void` Forbidden
5834
+ * @response `404` `void` Not Found
5835
+ */
5836
+ tagsAddItemsByName: (name: string, data: AddDictItemRequest, axiosConfig?: AxiosRequestConfig) => Promise<void>;
5837
+ /**
5838
+ * No description
5839
+ *
5840
+ * @tags tags
5841
+ * @name TagsAllByName
5842
+ * @summary 获取部门标签项(包含上级部门)
5843
+ * @request GET:/auth-duty/duty/tags/{name}/all
5844
+ * @response `200` `DeptDictionaryWithItems` OK
5845
+ * @response `401` `void` Unauthorized
5846
+ * @response `403` `void` Forbidden
5847
+ * @response `404` `void` Not Found
5848
+ */
5849
+ tagsAllByName: ({ name, ...query }: TagsAllByNameParams, axiosConfig?: AxiosRequestConfig) => Promise<DeptDictionaryWithItems>;
5850
+ /**
5851
+ * No description
5852
+ *
5853
+ * @tags tags
5854
+ * @name DeleteTagsRemoveItemsByName
5855
+ * @summary 删除标签项目
5856
+ * @request DELETE:/auth-duty/duty/tags/{name}/remove-items
5857
+ * @response `200` `void` OK
5858
+ * @response `204` `void` No Content
5859
+ * @response `401` `void` Unauthorized
5860
+ * @response `403` `void` Forbidden
5861
+ */
5862
+ deleteTagsRemoveItemsByName: (name: string, data: RemoveDictItemRequest, axiosConfig?: AxiosRequestConfig) => Promise<void>;
5863
+ };
5405
5864
  urgentSchedule: {
5406
5865
  /**
5407
5866
  * No description