完成访客搭建,完善之前审核界面

This commit is contained in:
Zy
2026-04-13 18:10:23 +08:00
parent d957d1a039
commit 7f152c45f5
34 changed files with 1732 additions and 1208 deletions

View File

@@ -22,12 +22,12 @@ export interface ParkingVO {
/**
* 车位状态 0 闲置 1自用 2出租
*/
parkingStatus: number;
parkingStatus: string;
/**
* 0产权车位 1公共停车位
*/
type: number;
type: string;
/**
* 住户id
@@ -47,8 +47,7 @@ export interface ParkingVO {
/**
* 0 审核中 1 审核通过 2 审核不通过
*/
checkStatus: number;
checkStatus: string;
/**
* 备注
*/
@@ -79,12 +78,12 @@ export interface ParkingForm extends BaseEntity {
/**
* 车位状态 0 闲置 1自用 2出租
*/
parkingStatus?: number;
parkingStatus?: string;
/**
* 0产权车位 1公共停车位
*/
type?: number;
type?: string;
/**
* 住户id
@@ -104,7 +103,7 @@ export interface ParkingForm extends BaseEntity {
/**
* 0 审核中 1 审核通过 2 审核不通过
*/
checkStatus?: number;
checkStatus?: string;
/**
* 备注
@@ -151,12 +150,12 @@ export interface ParkingQuery extends PageQuery {
/**
* 车位状态 0 闲置 1自用 2出租
*/
parkingStatus?: number;
parkingStatus?: string;
/**
* 0产权车位 1公共停车位
*/
type?: number;
type?: string;
/**
* 住户id
@@ -176,7 +175,7 @@ export interface ParkingQuery extends PageQuery {
/**
* 0 审核中 1 审核通过 2 审核不通过
*/
checkStatus?: number;
checkStatus?: string;
/**
* 日期范围参数