go-common/app/interface/main/creative/model/porder/porder.go

16 lines
241 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
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
)