8 lines
268 B
Dart
Raw Normal View History

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';
}