You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
354 B
13 lines
354 B
package model |
|
|
|
// BusinessAttr . |
|
type BusinessAttr struct { |
|
ID int64 `json:"id"` |
|
Bid int `json:"bid"` |
|
Name string `json:"name"` |
|
DealType int `json:"deal_type"` |
|
ExpireTime int `json:"expire_time"` |
|
AssignType int `json:"assign_type"` |
|
AssignMax int `json:"assign_max"` |
|
GroupType int `json:"group_type"` |
|
}
|
|
|