新增取消订单备注

This commit is contained in:
2023-09-12 11:46:54 +08:00
parent 3a82611c6f
commit 69208b27be
3 changed files with 23 additions and 4 deletions
+6
View File
@@ -2,6 +2,7 @@ package requests
type OrderInquiryRequest struct {
GetOrderInquiryPage // 获取问诊订单列表-分页
CancelOrderInquiry // 取消问诊订单
}
// GetOrderInquiryPage 获取问诊订单列表-分页
@@ -26,3 +27,8 @@ type GetOrderInquiryPage struct {
PatientName string `json:"patient_name" form:"patient_name" label:"患者姓名-就诊人"`
Mobile string `json:"mobile" form:"mobile" label:"手机号-医生/患者"`
}
// CancelOrderInquiry 取消问诊订单
type CancelOrderInquiry struct {
CancelRemarks string `json:"cancel_remarks" form:"cancel_remarks" validate:"required" label:"取消订单备注"`
}