|
@@ -594,7 +594,7 @@ const docTemplate = `{
|
|
|
"in": "body",
|
|
|
"required": true,
|
|
|
"schema": {
|
|
|
- "$ref": "#/definitions/myselfsrv.OrderPageReqVO"
|
|
|
+ "$ref": "#/definitions/swagger.OrderPageReqVO"
|
|
|
}
|
|
|
}
|
|
|
],
|
|
@@ -1004,6 +1004,36 @@ const docTemplate = `{
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ "constant.SearchDateTimeType": {
|
|
|
+ "type": "string",
|
|
|
+ "enum": [
|
|
|
+ "today",
|
|
|
+ "yesterday",
|
|
|
+ "thisWeek",
|
|
|
+ "thisMonth",
|
|
|
+ "lastThreeDays",
|
|
|
+ "lastSevenDays",
|
|
|
+ "lastMonthDays"
|
|
|
+ ],
|
|
|
+ "x-enum-comments": {
|
|
|
+ "LastMonthDays": "近一个月",
|
|
|
+ "LastSevenDays": "近七天",
|
|
|
+ "LastThreeDays": "近三天",
|
|
|
+ "ThisMonth": "本月",
|
|
|
+ "ThisWeek": "本周",
|
|
|
+ "Today": "今天",
|
|
|
+ "Yesterday": "昨天"
|
|
|
+ },
|
|
|
+ "x-enum-varnames": [
|
|
|
+ "Today",
|
|
|
+ "Yesterday",
|
|
|
+ "ThisWeek",
|
|
|
+ "ThisMonth",
|
|
|
+ "LastThreeDays",
|
|
|
+ "LastSevenDays",
|
|
|
+ "LastMonthDays"
|
|
|
+ ]
|
|
|
+ },
|
|
|
"devicesrv.DeviceSensorListReqVO": {
|
|
|
"type": "object",
|
|
|
"properties": {
|
|
@@ -1184,9 +1214,6 @@ const docTemplate = `{
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- "myselfsrv.OrderPageReqVO": {
|
|
|
- "type": "object"
|
|
|
- },
|
|
|
"myselfsrv.OrderSubNoReqVO": {
|
|
|
"type": "object",
|
|
|
"properties": {
|
|
@@ -1730,6 +1757,38 @@ const docTemplate = `{
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
+ "swagger.OrderPageReqVO": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "page": {
|
|
|
+ "$ref": "#/definitions/swagger.Page"
|
|
|
+ },
|
|
|
+ "search": {
|
|
|
+ "type": "object",
|
|
|
+ "properties": {
|
|
|
+ "orderNo": {
|
|
|
+ "description": "订单号",
|
|
|
+ "type": "string"
|
|
|
+ },
|
|
|
+ "orderStatus": {
|
|
|
+ "type": "array",
|
|
|
+ "items": {
|
|
|
+ "type": "integer"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "placeOrderEndTime": {
|
|
|
+ "$ref": "#/definitions/models.MyTime"
|
|
|
+ },
|
|
|
+ "placeOrderStartTime": {
|
|
|
+ "$ref": "#/definitions/models.MyTime"
|
|
|
+ },
|
|
|
+ "searchDateTime": {
|
|
|
+ "$ref": "#/definitions/constant.SearchDateTimeType"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
"swagger.Page": {
|
|
|
"type": "object",
|
|
|
"properties": {
|