package front

type PayCommonBody struct {
	AppId     int64 `json:"app_id" validate:"required"`
	Timestamp int64 `json:"timestamp" validate:"required"`
}

type PayWeb struct {
	PayCommonBody
	PayChannel int64 `json:"private_key_path"`
	Delay      int64 `json:"delay"` //延时时间
}