正确请求示例
xxxxxxxxxx{    "cinemaCode": "88888888",    "screenCode": "0000000000000001",    "seatsLayout":    [        {            "layoutVersion": "sed",            "effectiveDate": "2020-05-11",            "regions":            [                {                    "regionCode": "29",                    "regionName": "科派无每而"                },                {                    "regionCode": "41",                    "regionName": "张由步"                }            ],            "sections":            [                {                    "sectionCode": "39",                    "sectionName": "直能为布程"                },                {                    "sectionCode": "21",                    "sectionName": "真经料"                }            ],            "seatList":            [                {                    "seatCode": "88888888010010011102",                    "x": "ipsum ut",                    "y": "ullamco culpa et",                    "rowId": "48",                    "columnId": "47",                    "type": "Z",                    "status": "D",                    "regionCode": "11",                    "sectionCode": "69"                },                {                    "seatCode": "88888888010010011103",                    "x": "est veniam sit",                    "y": "aliquip dolore",                    "rowId": "95",                    "columnId": "94",                    "type": "DR",                    "status": "D",                    "regionCode": "32",                    "sectionCode": "3"                }            ]        },        {            "layoutVersion": "ut anim amet magna",            "effectiveDate": "1994-03-07",            "regions":            [                {                    "regionCode": "54",                    "regionName": "中社根地"                },                {                    "regionCode": "64",                    "regionName": "百属指"                }            ],            "sections":            [                {                    "sectionCode": "71",                    "sectionName": "观便速思叫"                },                {                    "sectionCode": "27",                    "sectionName": "较示切作"                }            ],            "seatList":            [                {                    "seatCode": "88888888010010011104",                    "x": "3",                    "y": "4",                    "rowId": "59",                    "columnId": "85",                    "type": "DR",                    "status": "D",                    "regionCode": "46",                    "sectionCode": "56"                },                {                    "seatCode": "88888888010010011105",                    "x": "1",                    "y": "2",                    "rowId": "61",                    "columnId": "2",                    "type": "DL",                    "status": "N",                    "regionCode": "72",                    "sectionCode": "34"                }            ]        }    ]}请求参数
| 名称 | 字段长度 | 类型 | 必选 | 中文名 | 说明 | 
|---|---|---|---|---|---|
| cinemaCode | 8 | string | 是 | 电影院编码 | none | 
| screenCode | 16 | string | 是 | 影厅编码 | none | 
| seatsLayout | none | [object] | 是 | 座位列表 | none | 
| layoutVersion | 15 | string | 是 | 座位图版本名称 | 座位图列表,一个影厅的座位图在不同时间段可以有多个版本 | 
| effectiveDate | none | string | 是 | 座位图生效日期 | none | 
| regions | none | [object] | 是 | 场区 | 一个影厅可以划分多个场区,一般用来标识不同楼层 | 
| regionCode | 4 | string | 是 | 场区编码 | none | 
| regionName | 6 | string | 是 | 场区名称 | none | 
| sections | none | [object] | 是 | 影厅可划分为不同分区,用于营销区别定价,如会员区 | |
| sectionCode | 8 | string | 是 | 分区编码 | none | 
| sectionName | 8 | string | 是 | 分区名称 | none | 
| seatList | none | [object] | 是 | 座位列表 | none | 
| seatCode | 20 | string | 是 | 座位编码 | 座位编码,长度20位,其中17-18位:座位行号;19-20位:座位列号。 | 
| x | 2 | string | 是 | 座位X坐标 | 座位图横坐标 | 
| y | 2 | string | 是 | 座位Y坐标 | 座位图纵坐标 | 
| rowId | 2 | string | 是 | 座位行号 | 行编号(票面使用) | 
| columnId | 2 | string | 是 | 座位列号 | 列编号(票面使用) | 
| type | 2 | string | 是 | 座位类型 | N:普通座位W:残疾人座位Z:震动座位DL:两人左座位DR:两人右座位 | 
| status | 1 | string | 是 | 座位状态 | N:正常D:损坏 | 
| regionCode | 4 | string | 是 | 场区编码 | 所属场区编码 | 
| sectionCode | 8 | string | 是 | 分区编码 | 所属分区编码 | 
返回示例
xxxxxxxxxx{    "code": "200",    "status": "success",    "data":    {}}