1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package com.mandi.fendan.service;
|
| import java.util.Map;
|
| import com.mandi.dao.common.ObjectResult;
| import com.mandi.system.persist.Login;
|
| public interface Ifd_bsheetService {
|
| /**
| * 新增和修改
| * @param mt
| * @return
| */
| public ObjectResult<Map<String, Object>> saveFd_Bsheet(String vehicleList,String xstdNo,String list,Login lg) throws Exception;
|
| /**
| * 发送短信
| * @param lg
| * @param bussinessNo
| * @return
| * @throws Exception
| */
| public ObjectResult<String> sendMsg(Login lg,String bussinessNo) throws Exception;
|
|
| }
|
|