import request from '/@/utils/request';

export function fireApplyApi() {
    return {
        // 动火申请
        postFireApply: (data: object) => {
            return request({
                url: import.meta.env.VITE_API_URL + `/work/apply/hot`,
                method: 'post',
                data: data
            });
        }
    };
}
