1
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
15683799673
2025-06-28 02:41:09 +08:00
parent 81a89bb4dc
commit acd63bc96e
23 changed files with 670 additions and 1046 deletions

View File

@@ -1,6 +1,8 @@
import type { RoomVO, RoomForm, RoomQuery } from './model';
import type { ID, IDS } from '#/api/common';
import type { PageResult } from '#/api/common';
import { commonExport } from '#/api/helper';
import { requestClient } from '#/api/request';

View File

@@ -2,19 +2,14 @@ import type { PageQuery, BaseEntity } from '#/api/common';
export interface RoomVO {
/**
* 主键
*
*/
id: string | number;
/**
* 所属楼层ID
*/
floorCode: string;
/**
* 房间编码
*/
roomCode: string;
floorId: string | number;
/**
* 房间号(如101,202)
@@ -55,19 +50,14 @@ export interface RoomVO {
export interface RoomForm extends BaseEntity {
/**
* 主键
*
*/
id?: string | number;
/**
* 所属楼层ID
*/
floorCode?: string;
/**
* 房间编码
*/
roomCode?: string;
floorId?: string | number;
/**
* 房间号(如101,202)
@@ -110,12 +100,7 @@ export interface RoomQuery extends PageQuery {
/**
* 所属楼层ID
*/
floorCode?: string;
/**
* 房间编码
*/
roomCode?: string;
floorId?: string | number;
/**
* 房间号(如101,202)