Files
SamWaf/model/response/all_host.go
T
2025-05-02 15:43:23 +08:00

23 lines
645 B
Go

package response
import "SamWaf/customtype"
type AllHostRep struct {
Code string `json:"value"` //唯一码
Host string `json:"label"` //域名
PreHost string `json:"pre_host"` //纯域名和端口
}
type AllShareDbRep struct {
StartTime customtype.JsonTime `json:"start_time"` //开始时间
EndTime customtype.JsonTime `json:"end_time"` //结束时间
FileName string `json:"file_name"` //文件名
Cnt int64 `json:"cnt"` //当前数量
}
// AllDomainRep 域名信息
type AllDomainRep struct {
Code string `json:"value"` //唯一码
Host string `json:"label"` //域名
}