17 lines
323 B
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" // 已导入
|
||
|
)
|