18 lines
281 B
Go
18 lines
281 B
Go
/*
|
|
* @desc:错误码信息
|
|
* @company:云南奇讯科技有限公司
|
|
* @Author: yixiaohu<yxh669@qq.com>
|
|
* @Date: 2025/5/20 10:20
|
|
*/
|
|
|
|
package consts
|
|
|
|
const (
|
|
// CodeInfo 提醒
|
|
CodeInfo = 1001
|
|
// CodeWarning 警告
|
|
CodeWarning = 1002
|
|
// CodeError 错误
|
|
CodeError = 1003
|
|
)
|