info.go 263 B

12345678910111213141516
  1. package subject
  2. type Info struct {
  3. Identity string
  4. Buyerclass string
  5. Contact map[string]*Contact
  6. }
  7. type Contact struct {
  8. Per string
  9. Tel string
  10. Buyer bool
  11. Agency bool
  12. Winner bool
  13. Owner bool
  14. Publishtime int64
  15. }