edb_terminal.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. package data_manage
  2. import (
  3. "fmt"
  4. "github.com/beego/beego/v2/client/orm"
  5. "time"
  6. )
  7. // EdbTerminal 指标终端
  8. type EdbTerminal struct {
  9. TerminalId int `orm:"column(terminal_id);pk"`
  10. Source int `orm:"column(source)" description:"指标来源类型"`
  11. Name string `description:"终端别名"`
  12. TerminalCode string `description:"终端编码,用于配置在机器上"`
  13. ServerUrl string `description:"终端地址"`
  14. Num int `description:"终端最大指标数"`
  15. Status int `description:"状态,1启用,2禁用"`
  16. Value string `description:"终端相关的token"`
  17. ModifyTime time.Time `description:"修改时间"`
  18. CreateTime time.Time `description:"创建时间"`
  19. }
  20. // GetEdbTerminalListBySource 根据指标来源类型获取所有的终端列表
  21. func GetEdbTerminalListBySource(source int) (items []*EdbTerminal, err error) {
  22. o := orm.NewOrmUsingDB("data")
  23. sql := ` SELECT * FROM edb_terminal WHERE source = ? and status=1 ORDER BY terminal_id ASC `
  24. _, err = o.Raw(sql, source).QueryRows(&items)
  25. return
  26. }
  27. type BaseIndexTerminalCode struct {
  28. TerminalCode string `description:"终端编码,用于配置在机器上"`
  29. }
  30. // GetBaseIndexTerminalCode 获取数据源的终端code
  31. func GetBaseIndexTerminalCode(edbCode, tableName string) (item BaseIndexTerminalCode, err error) {
  32. o := orm.NewOrmUsingDB("data")
  33. sql := fmt.Sprintf(`select terminal_code from %s where index_code = ? `, tableName)
  34. err = o.Raw(sql, edbCode).QueryRow(&item)
  35. return
  36. }