Files
baseapi/platformapi/jdshopapi/store_page_test.go
2020-05-09 08:58:55 +08:00

21 lines
364 B
Go

package jdshopapi
import (
"testing"
)
func TestCreateShopCategory(t *testing.T) {
var CreateShopCategoryParams = []*CreateShopCategoryParam{
&CreateShopCategoryParam{
HomeShow: "0",
ID: "0",
Open: "",
OrderNo: "0",
ParentID: "",
Title: "测试1",
Type: "3",
},
}
api.CreateShopCategory(CreateShopCategoryParams)
}