1234567891011121314151617181920212223242526272829 |
- package rpcs
- // ArgsDeviceRegister device register args
- type ArgsDeviceRegister struct {
- ProductKey string
- DeviceCode string
- DeviceVersion string
- ModuleName string
- }
- // ArgsDeviceUpdate device update args
- type ArgsDeviceUpdate struct {
- DeviceIdentifier string
- DeviceName string
- DeviceDescription string
- }
- // ArgsProductList get products list args
- type ArgsProductList struct {
- ArgsPage
- VendorID uint
- ProductName string
- }
- // ArgsPage page params
- type ArgsPage struct {
- Pi int
- Ps int
- }
|