go-common/app/interface/main/account/model/card.go

12 lines
231 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package model
// ArgCardID arg card id.
type ArgCardID struct {
ID int64 `form:"id" validate:"required,min=1,gte=1"`
}
// ArgGroupID arg group id.
type ArgGroupID struct {
ID int64 `form:"id" validate:"required,min=1,gte=1"`
}