GAAS GFrame项目web后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
688 B

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"`
}