路泰机电科技体检——数据平台后端
zhaowenxuan
2024-12-30 6ac675b3608076ff77a7cebba94a1da161c60128
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.example.service;
 
import org.springframework.stereotype.Service;
 
import java.util.Map;
 
/**
 * @Company: 西安路泰科技有限公司
 * @Author: zhaowenxuan
 * @Date: 2024/12/25 10:15
 */
@Service
public interface LisService {
 
    /**
     * 创建申请单
     * @param map
     * @return
     */
    String makeSqd(Map<String, Object> map);
}