12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- // Author : Eric Kim
- // Build Date : 23 Jul 2008 Last Update 02 Aug 2008
- // End-Agent for Passcon Multi OS go binding with Windows, MacOS, iOS, and Android
- // All rights are reserved.
- package locals_themes
- type ItemInfo struct {
- SolutinName string
- Version string
- AdminEmail string
- DomainName string
- DomaminURI string
- ItemName string
- ItemNick string
- ModelName string
- ModelNo string
- BrandName string
- Sku string
- ItemCategory string
- Manufacturer string
- Origin string
- Language string
- Currency string
- SalesPrice float32
- DeliveryPrice float32
- MinumumQty float32
- UserCredit float32
- Options []Option
- Images []string
- ShortDesc string
- OriginDesc string
- TextDesc string
- }
- type Option struct {
- Name string
- Choices []Choice
- }
- type Choice struct {
- Name string
- Price float32
- }
- type Image struct {
- Path string
- }
- type Desc struct {
- Info string
- }
- var (
- WordpressUrl string = "https://seoulknit.com/shop/collar-half-sleeved-top_blue/"
- WordpressUrl2 string = "https://www.dollshecraft.com/product/amanda-beauty-26f-classic-maxi-65cm-special-package-2/"
- ShopifyUrl string = "https://bt-beloria-1.myshopify.com/collections/clothing/products/sweater-classical-tshirt"
- 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"
- 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/"
- GodoUrl string = "http://samplemorenvy256.godomall.com/goods/goods_view.php?goodsNo=1000000039"
- YoungUrl string = "http://damoagift.com/shop/view.php?index_no=67813"
- Remarks string = "URLs are not fixed yet and can be fixed after contract is set forth"
- )
|