|
@@ -25,7 +25,6 @@ import org.springframework.transaction.annotation.Transactional;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
import springfox.documentation.annotations.ApiIgnore;
|
|
|
|
|
@@ -132,10 +131,16 @@ public class ProductOrderController {
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "产品申请——显示所有订单[by:wangyu]",
|
|
|
- notes =
|
|
|
- "current:页数<br>" +
|
|
|
- "size:每页显示条数<br>" +
|
|
|
- "status:订单状态(0.未付款1.已付款)")
|
|
|
+ notes = "current:页数<br>" +
|
|
|
+ "size:每页显示条数<br>" +
|
|
|
+ "auditStatus:审核状态(0.未付款1.已付款)<br>" +
|
|
|
+ "num:订单编号<br>" +
|
|
|
+ "orgName:机构名称<br>" +
|
|
|
+ "id:订单id<br>" +
|
|
|
+ "userId:用户id<br>" +
|
|
|
+ "time:下单时间<br>" +
|
|
|
+ "linkman:用户名称<br>" +
|
|
|
+ "username:手机号码<br>")
|
|
|
@PostMapping("/getAllProductOrder")
|
|
|
@SysLogger("getAllProductOrder")
|
|
|
public RespDTO<List<ProductOrderWrapper>> getAllProductOrder(@RequestBody ProductOrderVO productOrderVO) {
|