7/4新增公安备案底部链接
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ export interface RepairProjectVO {
|
||||
* 项目层级 0,1
|
||||
*/
|
||||
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 {
|
||||
|
||||
Reference in New Issue
Block a user