spider-structs-210523.go 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. // Author : Eric Kim
  2. // Build Date : 23 Jul 2008 Last Update 02 Aug 2008
  3. // End-Agent for Passcon Multi OS go binding with Windows, MacOS, iOS, and Android
  4. // All rights are reserved.
  5. package locals_themes
  6. type ItemInfo struct {
  7. SolutinName string
  8. Version string
  9. AdminEmail string
  10. DomainName string
  11. DomaminURI string
  12. ItemName string
  13. ItemNick string
  14. ModelName string
  15. ModelNo string
  16. BrandName string
  17. Sku string
  18. ItemCategory string
  19. Manufacturer string
  20. Origin string
  21. Language string
  22. Currency string
  23. SalesPrice float32
  24. DeliveryPrice float32
  25. MinumumQty float32
  26. UserCredit float32
  27. Options []Option
  28. Images []string
  29. ShortDesc string
  30. OriginDesc string
  31. TextDesc string
  32. }
  33. type Option struct {
  34. Name string
  35. Choices []Choice
  36. }
  37. type Choice struct {
  38. Name string
  39. Price float32
  40. }
  41. type Image struct {
  42. Path string
  43. }
  44. type Desc struct {
  45. Info string
  46. }
  47. var (
  48. WordpressUrl string = "https://seoulknit.com/shop/collar-half-sleeved-top_blue/"
  49. WordpressUrl2 string = "https://www.dollshecraft.com/product/amanda-beauty-26f-classic-maxi-65cm-special-package-2/"
  50. ShopifyUrl string = "https://bt-beloria-1.myshopify.com/collections/clothing/products/sweater-classical-tshirt"
  51. MagentoUrl string = "http://mas1.magikthemes.com/index.php/linea/cloth-women/cloth-kurtas/cloth-tail-cut-kurti/dennis-lingo-solid-casual-full-sleeves-slim-black-cotton-shirt.html"
  52. Cafe24Url string = "http://ecudemo122890.cafe24.com/product/%EC%83%98%ED%94%8C%EC%83%81%ED%92%88-11-%EB%98%90%EB%8A%94-%EB%B8%8C%EB%9E%9C%EB%93%9C%EB%AA%85/19/category/28/display/1/"
  53. GodoUrl string = "http://samplemorenvy256.godomall.com/goods/goods_view.php?goodsNo=1000000039"
  54. YoungUrl string = "http://damoagift.com/shop/view.php?index_no=67813"
  55. Remarks string = "URLs are not fixed yet and can be fixed after contract is set forth"
  56. GodoUrl_1 string = "https://www.lachinatakorea.com/goods/goods_view.php?goodsNo=1000000255"
  57. GodoUrl_2 string = "https://sf-fd.com/goods/goods_view.php?goodsNo=1000000407&mtn=2%5E%7C%5EMD%EC%B6%94%EC%B2%9C%EC%83%81%ED%92%88%5E%7C%5En"
  58. Cafe24_1 string = "https://koskomro.com/shop/view.php?index_no=114194"
  59. Cafe24_2 string = "https://ssline.kr/shop/view.php?index_no=114156"
  60. Cafe2432 string = "https://naturalize.co.kr/product/detail.html?product_no=851&cate_no=134&display_group=1"
  61. )