增加ip2region库管理

This commit is contained in:
GoEdgeLab
2020-11-04 15:51:32 +08:00
parent b41624df21
commit 70eaf45aba
11 changed files with 454 additions and 73 deletions

View File

@@ -12,6 +12,7 @@ type File struct {
Order uint32 `field:"order"` // 排序
Type string `field:"type"` // 类型
State uint8 `field:"state"` // 状态
IsFinished uint8 `field:"isFinished"` // 是否已完成上传
}
type FileOperator struct {
@@ -25,6 +26,7 @@ type FileOperator struct {
Order interface{} // 排序
Type interface{} // 类型
State interface{} // 状态
IsFinished interface{} // 是否已完成上传
}
func NewFileOperator() *FileOperator {