package request
|
|
import (
|
"github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
|
"github.com/flipped-aurora/gin-vue-admin/server/model/test"
|
"time"
|
)
|
|
type SupplierTypeSearch struct {
|
test.SupplierType
|
StartCreatedAt *time.Time `json:"startCreatedAt" form:"startCreatedAt"`
|
EndCreatedAt *time.Time `json:"endCreatedAt" form:"endCreatedAt"`
|
request.PageInfo
|
}
|
|
type SupplierTypeList struct {
|
SupplierTypes []test.SupplierType `json:"supplierTypes"`
|
}
|