| | |
| | | businessTypeHandle := requestnvt.GetHandle( "businessType" ); |
| | | businessTypeNameValue := restPayloadNameValue.Child( businessTypeHandle ); |
| | | |
| | | if ( businessTypeNameValue.GetValueAsString() = "车载" ) { |
| | | businessType := businessTypeNameValue.GetValueAsString(); |
| | | |
| | | if ( businessType = "车载" ) { |
| | | PanelMaterialVehicle::ReceiveDataGeneration( this, requestnvt ); |
| | | } else if ( businessType = "汽车电子" ) { |
| | | PanelMaterialAutomotiveElectronics::ReceiveDataGeneration( this, requestnvt ); |
| | | } else if ( businessType = "天华" ) { |
| | | PanelMaterialTianHua::ReceiveDataGeneration( this, requestnvt ); |
| | | } else if ( businessType = "运动健康" ) { |
| | | PanelMaterialSportsHealth::ReceiveDataGeneration( this, requestnvt ); |
| | | } else if ( businessType = "专显" ) { |
| | | PanelMaterialSpecializedDisplay::ReceiveDataGeneration( this, requestnvt ); |
| | | } else if ( businessType = "IT" ) { |
| | | PanelMaterialIT::ReceiveDataGeneration( this, requestnvt ); |
| | | } else if ( businessType = "TM17" ) { |
| | | PanelMaterialTM17::ReceiveDataGeneration( this, requestnvt ); |
| | | } else if ( businessType = "TM18" ) { |
| | | PanelMaterialTM18::ReceiveDataGeneration( this, requestnvt ); |
| | | } |
| | | |
| | | |