dm_special_location.go 351 B

1234567891011121314151617181920212223
  1. package model
  2. import (
  3. "strings"
  4. )
  5. // DmSpecial special dm bfs location
  6. type DmSpecial struct {
  7. ID int64
  8. Type int32
  9. Oid int64
  10. Locations string
  11. }
  12. // Split .
  13. func (d *DmSpecial) Split() []string {
  14. return strings.Split(d.Locations, ",")
  15. }
  16. // Join .
  17. func (d *DmSpecial) Join(s []string) {
  18. d.Locations = strings.Join(s, ",")
  19. }