package api
|
|
|
|
/******************************************************************************
|
|
*
|
|
* @Struct Name : Screw
|
|
*-----------------------------------------------------------------------------
|
|
*
|
|
* @Description : 零件打螺丝 mes传递的数据
|
|
*
|
|
* @Author : zhangxin
|
|
*
|
|
* @Date : 2021-05-14
|
|
*
|
|
******************************************************************************/
|
|
type Screw struct {
|
|
STN string `json:"STN"`
|
|
PARTNO string `json:"PARTNO"`
|
|
SCREW_POS int `json:"SCREW_POS"`
|
|
TORQUE float64 `json:"TORQUE"`
|
|
ANGLE float64 `json:"ANGLE"`
|
|
RESULT bool `json:"RESULT"`
|
|
UNITSN string `json:"UNITSN"`
|
|
}
|