Merge branch 'master' of http://47.109.37.87:3000/by2025/admin-vben5
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import type { PageQuery, BaseEntity } from '#/api/common';
|
||||
import {isArray} from "lodash-es";
|
||||
|
||||
export interface ShiftVO {
|
||||
/**
|
||||
@@ -24,7 +25,7 @@ export interface ShiftVO {
|
||||
/**
|
||||
* 状态(0:off,1:on)
|
||||
*/
|
||||
status: number;
|
||||
status: string | number;
|
||||
|
||||
/**
|
||||
* 是否休息(0:不休息,1:休息)
|
||||
@@ -40,6 +41,9 @@ export interface ShiftVO {
|
||||
* 休息结束时间
|
||||
*/
|
||||
restEndTime: string;
|
||||
|
||||
attendanceTimeRange: [any,any];
|
||||
restTimeRange: [any,any];
|
||||
}
|
||||
|
||||
export interface ShiftForm extends BaseEntity {
|
||||
@@ -66,7 +70,7 @@ export interface ShiftForm extends BaseEntity {
|
||||
/**
|
||||
* 状态(0:off,1:on)
|
||||
*/
|
||||
status?: number;
|
||||
status?: string | number;
|
||||
|
||||
/**
|
||||
* 是否休息(0:不休息,1:休息)
|
||||
@@ -103,7 +107,7 @@ export interface ShiftQuery extends PageQuery {
|
||||
/**
|
||||
* 状态(0:off,1:on)
|
||||
*/
|
||||
status?: number;
|
||||
status?: string | number;
|
||||
|
||||
/**
|
||||
* 是否休息(0:不休息,1:休息)
|
||||
|
Reference in New Issue
Block a user