liuxiaolong
2019-10-14 19714213d70bb07cc2357ff96ad90c1e84ae519e
fix pllconfig int to int32
1个文件已修改
4 ■■■■ 已修改文件
controllers/pollConfig.go 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
controllers/pollConfig.go
@@ -13,8 +13,8 @@
type PollConfig struct {
    ServerId   string `json:"server_id"`   //服务器id
    PollPeriod int    `json:"poll_period"` //轮询周期
    Delay      int    `json:"delay"`       //延时时间
    PollPeriod int32    `json:"poll_period"` //轮询周期
    Delay      int32    `json:"delay"`       //延时时间
    Enable     bool   `json:"enable"`      //是否启用轮询
}