gin是v1.5.0版本会有兼容问题导致验证器注册失败。
v8和v9的写法有区别,参考2楼的解释(https://www.imooc.com/qadetail/336366)
type Booking struct {
CheckIn time.Time `form:"check_in" validate:"required,bookableDate" time_format:"2006-01-02"`
CheckOut time.Time `form:"check_out" validate:"required,gtfield=CheckIn" time_format:"2006-01-02"`
}