POST api/Quotation/processingArguments

提交⼯艺参数

Request Information

URI Parameters

None.

Body Parameters

ProcessingArgumentsRequest
NameDescriptionTypeAdditional information
id

integer

None.

lineId

明细Id

integer

None.

tenantId

租⼾Id

integer

None.

axialLength

轴⻓:取最⼤加⼯深度

decimal number

None.

holeDepth

孔深:取深度与直径⽐例的最⼤值

decimal number

None.

hardness

⾦属硬度:根据材料获取硬度、

decimal number

None.

deformationCoefficient

塑料变形:根据材料获取变形系数、

decimal number

None.

curvedSurfaceArea

曲⾯:计算产品的曲⾯⾯积

decimal number

None.

fixturesNumber

需要⼯装:多⾯装夹的产品需要的夹具数量、

decimal number

None.

fiveAxisMachining

五轴联动:产品是否需要五轴加⼯、

boolean

None.

brackets

多⾯加⼯:多⾯装夹的次数、

integer

None.

cavityDepth

深腔:腔的深度⽆法使⽤普通⼑具加⼯的情况、

decimal number

None.

minWallThickness

壁厚:计算产品最薄的位置、

decimal number

None.

customTooling

定制⼑具:暂不处理、

boolean

None.

turnMillCombination

⻋铣复合:是否⻋床特征和铣特征同时存在

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "id": 1,
  "lineId": 2,
  "tenantId": 3,
  "axialLength": 4.1,
  "holeDepth": 5.1,
  "hardness": 6.1,
  "deformationCoefficient": 7.1,
  "curvedSurfaceArea": 8.1,
  "fixturesNumber": 9.1,
  "fiveAxisMachining": true,
  "brackets": 11,
  "cavityDepth": 12.1,
  "minWallThickness": 13.1,
  "customTooling": true,
  "turnMillCombination": true
}

Response Information

Resource Description

BaseResponseModel
NameDescriptionTypeAdditional information
Status

Request processing results ('ok' or 'error')

string

None.

ErrorText

Error Description ( Empty when request processing successfully )

string

None.

Code

状态码

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": "sample string 1",
  "ErrorText": "sample string 2",
  "Code": 3
}