|
@@ -479,6 +479,7 @@ export interface ProtocolList {
|
|
pageIndex: number;
|
|
pageIndex: number;
|
|
pageSize: number;
|
|
pageSize: number;
|
|
searchContent: string;
|
|
searchContent: string;
|
|
|
|
+ protocolType: string;
|
|
}
|
|
}
|
|
|
|
|
|
export interface EquipmentDetailsForm {
|
|
export interface EquipmentDetailsForm {
|
|
@@ -681,6 +682,16 @@ export interface SerialNumberItem {
|
|
export interface PhysicalInterfaceList {
|
|
export interface PhysicalInterfaceList {
|
|
linkId: number;
|
|
linkId: number;
|
|
linkName: string;
|
|
linkName: string;
|
|
|
|
+ groups: GroupItem[];
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+export interface GroupItem {
|
|
|
|
+ id: number;
|
|
|
|
+ linkName: string;
|
|
|
|
+ station: number;
|
|
|
|
+ protocolId: number;
|
|
|
|
+ protocolName: string;
|
|
|
|
+ group: string;
|
|
}
|
|
}
|
|
|
|
|
|
export type ListEquipmentParametersItemData = PageData<ListEquipmentParametersItem>;
|
|
export type ListEquipmentParametersItemData = PageData<ListEquipmentParametersItem>;
|
|
@@ -703,6 +714,7 @@ export interface ListEquipmentParametersItem {
|
|
groupName: string;
|
|
groupName: string;
|
|
groupIdShow: boolean;
|
|
groupIdShow: boolean;
|
|
linkId: number;
|
|
linkId: number;
|
|
|
|
+ gatewayLinkProtocolId: number;
|
|
}
|
|
}
|
|
|
|
|
|
export interface GatewayDataItem extends ListEquipmentParametersItem {
|
|
export interface GatewayDataItem extends ListEquipmentParametersItem {
|
|
@@ -1222,6 +1234,7 @@ export interface AssociatedGatewayParameters {
|
|
modelName: string;
|
|
modelName: string;
|
|
linkName: string;
|
|
linkName: string;
|
|
linkId: number;
|
|
linkId: number;
|
|
|
|
+ gatewayLinkProtocolId: number;
|
|
protocolParamInfoQueryVos: protocolParamInfo[];
|
|
protocolParamInfoQueryVos: protocolParamInfo[];
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1319,6 +1332,7 @@ export interface ConfigureDeviceParameters {
|
|
serialNum: number;
|
|
serialNum: number;
|
|
groupName: string;
|
|
groupName: string;
|
|
linkId: string;
|
|
linkId: string;
|
|
|
|
+ gatewayLinkProtocolId: number;
|
|
}
|
|
}
|
|
|
|
|
|
export interface CustomParametersItem {
|
|
export interface CustomParametersItem {
|
|
@@ -1382,6 +1396,7 @@ export interface GatewayLinkProtocolQuery {
|
|
linkId: number;
|
|
linkId: number;
|
|
monitorType: string;
|
|
monitorType: string;
|
|
searchContent: string;
|
|
searchContent: string;
|
|
|
|
+ linkProtocolId: number;
|
|
}
|
|
}
|
|
|
|
|
|
export interface DeviceBindQuery {
|
|
export interface DeviceBindQuery {
|
|
@@ -1402,6 +1417,7 @@ export interface DeviceGateways {
|
|
gatewayId: number;
|
|
gatewayId: number;
|
|
gatewayProtocolId: number;
|
|
gatewayProtocolId: number;
|
|
linkId: number;
|
|
linkId: number;
|
|
|
|
+ gatewayLinkProtocolId: number;
|
|
}
|
|
}
|
|
|
|
|
|
export interface DeviceParamGroupRels {
|
|
export interface DeviceParamGroupRels {
|
|
@@ -1414,12 +1430,14 @@ export interface DeviceParamGroupRels {
|
|
isProcessData: boolean;
|
|
isProcessData: boolean;
|
|
unit: string;
|
|
unit: string;
|
|
gatewayId: number;
|
|
gatewayId: number;
|
|
|
|
+ gatewayLinkProtocolId: number;
|
|
}
|
|
}
|
|
|
|
|
|
export interface ParamValueListAutomaticQuery {
|
|
export interface ParamValueListAutomaticQuery {
|
|
linkId: number;
|
|
linkId: number;
|
|
deviceTypeId: number;
|
|
deviceTypeId: number;
|
|
deviceId: number;
|
|
deviceId: number;
|
|
|
|
+ linkProtocolId: number;
|
|
}
|
|
}
|
|
|
|
|
|
export interface ParamValueListAutomaticData {
|
|
export interface ParamValueListAutomaticData {
|
|
@@ -2100,7 +2118,7 @@ export interface CreateCustomer {
|
|
selectedColor: string;
|
|
selectedColor: string;
|
|
leaseTerm: [Dayjs, Dayjs];
|
|
leaseTerm: [Dayjs, Dayjs];
|
|
stationsNumber: number;
|
|
stationsNumber: number;
|
|
- dataValidityPeriod?: number;
|
|
|
|
|
|
+ dataValidityPeriod: string;
|
|
}
|
|
}
|
|
|
|
|
|
export interface CharacterItem {
|
|
export interface CharacterItem {
|