package api
|
|
|
|
/******************************************************************************
|
|
*
|
|
* @Struct Name : Andon
|
|
*-----------------------------------------------------------------------------
|
|
*
|
|
* @Description : andon 调用mes的返回数据
|
|
*
|
|
* @Author : zhangxin
|
|
*
|
|
* @Date : 2021-05-14
|
|
*
|
|
******************************************************************************/
|
|
type Andon struct {
|
|
IsSuccess bool `json:"IsSuccess"`
|
|
Content string `json:"Content"`
|
|
FieldErrors string `json:"fieldErrors"`
|
|
ErrorCode string `json:"ErrorCode"`
|
|
Msg string `json:"Msg"`
|
|
ToKenString string `json:"ToKenString"`
|
|
}
|