spring
22 小时以前 6fd917dbdb893748e140be907b6d0a14bb0f3c76
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,
    });
}