1234567891011121314151617181920 |
- package main
- type (
- Config struct {
- CornExp string `json:"cornexp"`
- Es struct {
- Address string `json:"address"`
- DbSize int `json:"dbSize"`
- BiddingIndex string `json:"biddingIndex"`
- ProjectIndex string `json:"projectIndex"`
- Version string `json:"version"`
- UserName string `json:"userName"`
- Password string `json:"password"`
- } `json:"es"`
- WxKey string `json:"wxKey"`
- WxApi string `json:"wxApi"`
- LastProjectTime int64 `json:"lastProjectTime"`
- LastBiddingTime int64 `json:"lastBiddingTime"`
- }
- )
|