hospital-admin-api/api/requests/DoctorConfigFollowPackageItem.go

11 lines
404 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package requests
type DoctorConfigFollowPackageItemRequest struct {
DoctorConfigFollowPackageItem
}
type DoctorConfigFollowPackageItem struct {
ServicePeriod int `json:"service_period" form:"service_period" label:"服务周期(天)" validate:"required"`
ServicePrice float64 `json:"service_price" form:"service_price" label:"服务价格" validate:"required,min=1"` // 0表示不限次
}