porder.go 241 B

123456789101112131415
  1. package porder
  2. // Config str
  3. type Config struct {
  4. ID int64 `json:"id"`
  5. Tp int8 `json:"type"`
  6. Name string `json:"name"`
  7. }
  8. const (
  9. // ConfigTypeIndustry const
  10. ConfigTypeIndustry = 0
  11. // ConfigTypeShow const
  12. ConfigTypeShow = 1
  13. )