go-common/app/interface/main/creative/model/porder/porder.go
2019-04-22 18:49:16 +08:00

16 lines
241 B
Go

package porder
// Config str
type Config struct {
ID int64 `json:"id"`
Tp int8 `json:"type"`
Name string `json:"name"`
}
const (
// ConfigTypeIndustry const
ConfigTypeIndustry = 0
// ConfigTypeShow const
ConfigTypeShow = 1
)