goProject/.svn/pristine/bb/bb649b8a5501aeab80fd26539cb17ed51d6e4385.svn-base
2025-01-06 16:21:36 +08:00

17 lines
312 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package managecenterModel
// 返回结果对象
type ReturnObject struct {
// 返回的状态值0成功非0失败根据实际情况进行定义
Code int32
// 返回的失败描述信息
Message string
// 返回的数据
Data interface{}
// 返回的数据hash值
HashValue string
}