计算白页数

--- ## 计算白页数 ### BASIC **Path:** hucai.wechat.common.blank_pcount **Method:** POST ### REQUEST **Headers:** | name | value | required | desc | | ------------ | ------------ | ------------ | ------------ | | Content-Type | application/x-www-form-urlencoded | YES | | **Query:** | name | value | required | desc | | ------------ | ------------ | ------------ | ------------ | | bindingType | 0 | NO | 装订方式 | | finishedSize | | NO | 成品尺寸 | | pCount | 0 | NO | 内页P数 | | material | | NO | 材料 | | checkType | 0 | NO | 1 初检 2 终审 | | turnType | false | NO | 0-左翻 1-右翻 | ### RESPONSE **Header:** | name | value | required | desc | | ------------ | ------------ | ------------ | ------------ | | content-type | application/json;charset=UTF-8 | NO | | **Body:** | name | type | desc | | ------------ | ------------ | ------------ | | code | integer | | | message | string | | | result | object | | |   |─blankPcount | integer | 白页P数 | |   |─blankPaper | integer | 白页张数 | **Response Demo:** ```json { "code": 0, "message": "", "result": { "blankPcount": 0, "blankPaper": 0 } } ```