7/4新增公安备案底部链接

This commit is contained in:
Zy
2026-07-04 15:40:37 +08:00
parent dff51dd4d4
commit 54d467ede7
16 changed files with 143 additions and 263 deletions

View File

@@ -2,7 +2,7 @@ export interface ComplaintTypeVO {
/**
* 投诉类型管理表id
*/
id: string | number;
id: string;
/**
* 投诉类型名称
@@ -13,43 +13,21 @@ export interface ComplaintTypeVO {
* 状态 0 启用 1停用
*/
status: string;
/**
* 创建人名称
*/
createNam: string;
/**
* 创建时间
*/
creaateTime: string;
}
export interface ComplaintTypeForm extends BaseEntity {
/**
* 投诉类型管理表id
*/
id?: string | number;
/**
* 投诉类型名称
*/
name?: string;
id?: string;
/**
* 状态 0 启用 1停用
*/
status?: string;
/**
* 创建人名称
* 投诉类型名称
*/
createNam?: string;
/**
* 创建时间
*/
creaateTime?: string;
name?: string;
}
export interface ComplaintTypeQuery extends PageQuery {
@@ -62,19 +40,4 @@ export interface ComplaintTypeQuery extends PageQuery {
* 状态 0 启用 1停用
*/
status?: string;
/**
* 创建人名称
*/
createNam?: string;
/**
* 创建时间
*/
creaateTime?: string;
/**
* 日期范围参数
*/
params?: any;
}

View File

@@ -23,7 +23,7 @@ export interface RepairProjectVO {
* 项目层级 01
*/
projectLevel: number;
children?: [];
children?: RepairProjectVO[];
/**
* 排序 (数越小越靠前)
*/
@@ -33,6 +33,9 @@ export interface RepairProjectVO {
* 状态 0启用 1停用
*/
status: string;
disabled?: boolean;
// children?: RepairProjectVO[];
}
export interface RepairProjectForm extends BaseEntity {