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