seatonwan9
2025-08-19 ade0cb41b9850438e78e06bcdf2d6590c41d6bc1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * @Description:生产模块接口
 * @Version: 2.0
 * @Autor: wuyun
 * @Date: 2022-09-01 17:03:29
 * @LastEditors: wuyun
 * @LastEditTime: 2023-02-03 16:07:54
 */
import httpService from '@/utils/axios'
const pUrl = '/admin/sysShift/'
class sysShift {
    //班次列表
    getShiftList(data: object = {}) {
        return httpService({
            url: `${pUrl}list`,
            data: data
        })
    }
}
const sysShiftApi = new sysShift()
export default sysShiftApi