12345678910111213141516171819202122232425262728293031323334 |
- package rpcs
- // ArgsDeviceRegister device register args
- type ArgsDeviceRegister struct {
- ProductKey string
- DeviceCode string
- DeviceVersion string
- ModuleName string
- }
- // ArgsDeviceAuth device auth
- type ArgsDeviceAuth struct {
- DeviceID int64
- }
- // 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
- }
|