Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
70 lines
958 B
TypeScript
70 lines
958 B
TypeScript
import type { PageQuery, BaseEntity } from '#/api/common';
|
|
|
|
export interface GroupVO {
|
|
/**
|
|
* 主键id
|
|
*/
|
|
id: string | number;
|
|
|
|
/**
|
|
* 考勤组名称
|
|
*/
|
|
groupName: string;
|
|
|
|
/**
|
|
* 状态(1:启用,0:禁用)
|
|
*/
|
|
status: number;
|
|
|
|
/**
|
|
* 考勤类型(0:固定班制,1:排班制)
|
|
*/
|
|
attendanceType: number;
|
|
|
|
}
|
|
|
|
export interface GroupForm extends BaseEntity {
|
|
/**
|
|
* 主键id
|
|
*/
|
|
id?: string | number;
|
|
|
|
/**
|
|
* 考勤组名称
|
|
*/
|
|
groupName?: string;
|
|
|
|
/**
|
|
* 状态(1:启用,0:禁用)
|
|
*/
|
|
status?: number;
|
|
|
|
/**
|
|
* 考勤类型(0:固定班制,1:排班制)
|
|
*/
|
|
attendanceType?: number;
|
|
|
|
}
|
|
|
|
export interface GroupQuery extends PageQuery {
|
|
/**
|
|
* 考勤组名称
|
|
*/
|
|
groupName?: string;
|
|
|
|
/**
|
|
* 状态(1:启用,0:禁用)
|
|
*/
|
|
status?: number;
|
|
|
|
/**
|
|
* 考勤类型(0:固定班制,1:排班制)
|
|
*/
|
|
attendanceType?: number;
|
|
|
|
/**
|
|
* 日期范围参数
|
|
*/
|
|
params?: any;
|
|
}
|