Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Array ¶
type Array []string
Array 是一个字符串数组类型,用于在数据库操作中存储和检索字符串列表。
type FileLocationType ¶
type FileLocationType int
const ( Local FileLocationType = iota + 1 // 本地保存 QiNiu // 七牛保存 )
func (FileLocationType) MarshalJSON ¶
func (s FileLocationType) MarshalJSON() ([]byte, error)
func (FileLocationType) String ¶
func (s FileLocationType) String() string
type SignStatus ¶
type SignStatus int
SignStatus 定义了登录状态的枚举类型。 它用于表示用户登录的方式,比如通过QQ或电子邮件。
const ( // QQ 表示通过QQ方式登录。 QQ SignStatus = 0 // Email 表示通过电子邮件方式登录。 Email SignStatus = 1 )
枚举常量定义了具体的登录状态。
func (SignStatus) MarshalJSON ¶
func (s SignStatus) MarshalJSON() ([]byte, error)
MarshalJSON 实现了 json.Marshaler 接口。 它将 SignStatus 类型的值转换为对应的字符串表示,用于 JSON 序列化。
func (SignStatus) String ¶
func (s SignStatus) String() string
String 实现了 fmt.Stringer 接口。 它将 SignStatus 类型的值转换为人类可读的字符串表示。
Click to show internal directories.
Click to hide internal directories.