| | |
| | | |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.mes.pp.entity.dto.FlowCardPercentDTO; |
| | | import com.mes.pp.entity.request.FlowCardRequest; |
| | | import com.mes.pp.service.FlowCardService; |
| | | import com.mes.utils.Result; |
| | | import io.swagger.annotations.Api; |
| | |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | return Result.build(200, "查询成功", flowCardService.flowCardReportForms(orderId)); |
| | | } |
| | | |
| | | @ApiOperation("订单详情进度接口") |
| | | @PostMapping("/flowCardPercent") |
| | | public Result<List<FlowCardPercentDTO>> flowCardPercent(@RequestBody FlowCardRequest flowCardRequest) { |
| | | return Result.build(200, "查询成功", null); |
| | | } |
| | | |
| | | } |
| | | |