2024-12-04 10:52:05 +08:00
|
|
|
class UdpConstant{
|
|
|
|
|
// generic成功响应
|
|
|
|
|
static const int genericRespSuccessCode = 0;
|
|
|
|
|
static const String genericRespSuccessMsg = 'ok';
|
2024-12-24 15:38:36 +08:00
|
|
|
// generic失败响应
|
|
|
|
|
static const int genericRespErrorCode = -1;
|
|
|
|
|
static const String genericRespErrorMsg = 'error';
|
2024-12-04 10:52:05 +08:00
|
|
|
}
|