修复部分问题
This commit is contained in:
@@ -6,6 +6,7 @@ export interface Company {
|
||||
shortName?: string;
|
||||
companyName?: string;
|
||||
companyType?: number;
|
||||
companyTypeMultiple?: string;
|
||||
companyLogo?: string;
|
||||
companyCode?: string;
|
||||
domain?: string;
|
||||
@@ -28,6 +29,7 @@ export interface Company {
|
||||
address?: string;
|
||||
latitude?: string;
|
||||
longitude?: string;
|
||||
businessEntity?: string;
|
||||
comments?: string;
|
||||
authentication?: number;
|
||||
industryId?: number;
|
||||
|
||||
@@ -4,8 +4,9 @@ export interface Accessory {
|
||||
accessoryId?: undefined;
|
||||
accessoryName?: string;
|
||||
accessoryNo?: string;
|
||||
accessoryCategory?: string;
|
||||
accessoryCategory?: object;
|
||||
accessoryModel?: string;
|
||||
accessoryModelMultiple?: string[];
|
||||
accessorySpecs?: string;
|
||||
accessoryPrice?: number;
|
||||
accessoryUnit?: string;
|
||||
|
||||
@@ -5,9 +5,11 @@ import type { PageParam } from '@/api';
|
||||
*/
|
||||
export interface TowerModel {
|
||||
// 型号分类id
|
||||
categoryId?: number;
|
||||
// 型号分类
|
||||
title?: string;
|
||||
modelId?: number;
|
||||
// 设备名称
|
||||
name?: string;
|
||||
// 设备型号
|
||||
model?: string;
|
||||
// 型号分类图片
|
||||
image?: string;
|
||||
// 使用年限
|
||||
@@ -37,8 +39,6 @@ export interface TowerModel {
|
||||
//
|
||||
merchantCode?: string;
|
||||
value?: number;
|
||||
// 子菜单
|
||||
children?: TowerModel[];
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user