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