You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tencent-im/account/enum.go

17 lines
323 B
Go

/**
* @Author: Echo
* @Author:1711788888@qq.com
* @Date: 2021/9/7 11:09
* @Desc: TODO
*/
package account
// ImportedStatusType 导入状态
type ImportedStatusType string
const (
ImportedStatusNo ImportedStatusType = "NotImported" // 未导入
ImportedStatusYes ImportedStatusType = "Imported" // 已导入
)