获取发货箱类型

地址: http://test.birdsystem.com/client/client-dispatch-container-type


返回

列名注释类型

id

系统ID

int(10)

name

名称

VARCHAR(50)

code

3位iso

VARCHAR (50)

length

DECIMAL(10,2)

width

DECIMAL(10,2)

height

DECIMAL(10,2)

max_weight

允许最大重量

DECIMAL(10,2)

status

状态

ENUM('ACTIVE','INACTIVE')

现在发货箱型有4种, 根据code区分

code箱型
BIG

大标箱

SMALL小标箱
CUSTOM自备箱
CU_BOX客户标准自备箱
{
    "total":4,
    "data":[
        {
            "id":1,
            "company_id":11,
            "name":"标箱大号",
            "code":"BIG",
            "length":"600.00",
            "width":"500.00",
            "height":"400.00",
            "max_weight":"30000.00",
            "container_weight":"1300.00",
            "status":"ACTIVE",
            "primary_keys":[
                "id"
            ]
        },
        {
            "id":2,
            "company_id":11,
            "name":"标箱小号",
            "code":"SMALL",
            "length":"500.00",
            "width":"400.00",
            "height":"300.00",
            "max_weight":"30000.00",
            "container_weight":"870.00",
            "status":"ACTIVE",
            "primary_keys":[
                "id"
            ]
        },
        {
            "id":3,
            "company_id":11,
            "name":"自备箱",
            "code":"CUSTOM",
            "length":"0.00",
            "width":"0.00",
            "height":"0.00",
            "max_weight":"32000.00",
            "container_weight":"1000.00",
            "status":"ACTIVE",
            "primary_keys":[
                "id"
            ]
        },
        {
            "id":12,
            "company_id":11,
            "name":"客户标准自备箱",
            "code":"CU_Box",
            "length":"600.00",
            "width":"500.00",
            "height":"400.00",
            "max_weight":"0.00",
            "container_weight":"0.00",
            "status":"ACTIVE",
            "primary_keys":[
                "id"
            ]
        }
    ],
    "success":true,
    "moduleName":"client"
}