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

  1. package api
  2. /******************************************************************************
  3. *
  4. * @Struct Name : Screw
  5. *-----------------------------------------------------------------------------
  6. *
  7. * @Description : 零件打螺丝 mes传递的数据
  8. *
  9. * @Author : zhangxin
  10. *
  11. * @Date : 2021-05-14
  12. *
  13. ******************************************************************************/
  14. type Screw struct {
  15. STN string `json:"STN"`
  16. PARTNO string `json:"PARTNO"`
  17. SCREW_POS int `json:"SCREW_POS"`
  18. TORQUE float64 `json:"TORQUE"`
  19. ANGLE float64 `json:"ANGLE"`
  20. RESULT bool `json:"RESULT"`
  21. UNITSN string `json:"UNITSN"`
  22. }