12345678910111213141516171819202122232425262728 |
- package rpcs
- // ArgsDeviceRegister device register args
- type ArgsDeviceRegister struct {
- ProductKey string
- DeviceCode string
- DeviceVersion 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
- }
|