|
123456789101112131415161718 |
- package protocol
-
- type RegisterRMRequest struct {
- AbstractIdentifyRequest
- ResourceIds string
- }
-
- func (req RegisterRMRequest) GetTypeCode() int16 {
- return TypeRegRm
- }
-
- type RegisterRMResponse struct {
- AbstractIdentifyResponse
- }
-
- func (resp RegisterRMResponse) GetTypeCode() int16 {
- return TypeRegRmResult
- }
|