Service_nodes.go 581 B

1234567891011121314151617181920
  1. package models
  2. import (
  3. "gorm.io/gorm"
  4. )
  5. type ServiceNodes struct {
  6. gorm.Model
  7. NodeName string `json:"node_name"` // 节点名称
  8. State bool `json:"state"` // 0: 离线 1: 在线
  9. Address string `json:"address"` // 节点地址
  10. Tokey string `json:"tokey"` // 节点token
  11. CreateBy int `json:"create_by"`
  12. }
  13. type ServiceNodesDto struct {
  14. NodeName string `json:"node_name"` // 节点名称
  15. State bool `json:"state"` // 0: 离线 1: 在线
  16. Address string `json:"address"` // 节点地址
  17. Tokey string `json:"tokey"` // 节点token
  18. }