spring
昨天 64e9df0cf9ed3e2d1c90e9b3531e4ebdcb9d797b
1
2
3
4
5
6
7
8
9
10
11
// 生产产出页面接口
import request from "@/utils/request";
 
// 分页查询
export function productionProductOutputListPage(query) {
    return request({
        url: "/productionProductOutput/listPage",
        method: "get",
        params: query,
    });
}