java110
2021-08-06 b5e47a74ad88c453bf82fb8b870b69ac9d45503f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
  "autoMove": false,
  "id": "productId",
  "name": "product",
  "desc": "产品",
  "shareParam": "storeId",
  "shareColumn": "store_id",
  "shareName": "goods",
  "tableName": "product",
  "param": {
    "productId": "product_id",
    "storeId": "store_id",
    "prodName": "prod_name",
    "prodDesc": "prod_desc",
    "keyword": "keyword",
    "barCode": "bar_code",
    "categoryId": "category_id",
    "unitName": "unit_name",
    "state": "state",
    "sort": "sort",
    "postage": "postage",
    "isPostage": "is_postage",
    "statusCd": "status_cd"
  },
  "required": [
    {
      "code": "prodName",
      "msg": "产品名称不能为空"
    },
    {
      "code": "storeId",
      "msg": "商户不能为空"
    },
    {
      "code": "keyword",
      "msg": "关键字不能为空"
    },
    {
      "code": "categoryId",
      "msg": "产品目录不能为空"
    },
    {
      "code": "unitName",
      "msg": "单位不能为空"
    },
    {
      "code": "sort",
      "msg": "排序不能为空"
    },
    {
      "code": "isPostage",
      "msg": "是否包邮不能为空"
    }
  ]
}