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.
|
package abtest |
|
|
|
import ( |
|
resource "go-common/app/service/main/resource/model" |
|
) |
|
|
|
type List struct { |
|
ID int64 `json:"group_id,lomitempty"` |
|
Name string `json:"group_name,omitempty"` |
|
} |
|
|
|
func (l *List) ListChange(r *resource.AbTest) { |
|
l.ID = r.ID |
|
l.Name = r.Name |
|
}
|
|
|