Files
baseapi/platformapi/jdshopapi/store_page_test.go
2020-05-08 16:05:10 +08:00

21 lines
356 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)
}