fs-danaus
2023-07-10 4849078e3450b8d3b3030a658a34dd58b0630fc5
提交 | 用户 | age
a6a76f 1 package com.yc.api.service;
F 2
d77745 3 import com.yc.api.bean.SerialNumberEntity;
F 4 import com.yc.api.bean.T110503Entity;
cd4850 5 import com.yc.api.bean.T9685Entity;
07b54c 6 import com.yc.api.bean.T9842Entity;
d77745 7
F 8 import java.util.List;
9 import java.util.Map;
10
a6a76f 11 public interface ApiServiceIfc {
F 12     /**
13      * 更新用户头像
14      * @param usercode
15      * @param unid
16      * @return
17      */
18     int uploadPortrait(String usercode,String unid);
d77745 19
F 20     List<T110503Entity> showSerialNumberList(SerialNumberEntity entity);
21
08505f 22     Map getMatCodeBySerialNumberIn(SerialNumberEntity entity);
F 23     Map getMatCodeBySerialNumberOut(SerialNumberEntity entity);
493df4 24
F 25     void clearCookie(String userCode, Integer formid, String cookieType);
d24ea3 26
F 27     /**
28      * 更新用户密码,成功返回当前用户有关联的dbid列表,失败返回null
29      * @param pwd
30      * @param tel
31      * @return
32      */
33     String doUpdateUserPwd(String pwd,String tel);
cd4850 34
F 35     /**
c054bc 36      * 用户切换手机号,成功返回当前用户有关联的dbid列表,全部更新有关联的实例数据库,失败返回null
484907 37      *
F 38      * @param oldTel
c054bc 39      * @return
F 40      */
484907 41     String getDataBaseLists(String oldTel);
c054bc 42
F 43     /**
cd4850 44      * 获取功能号设置的颜色图样
F 45      * @param formid
46      * @return
47      */
48     List<T9685Entity> get9685List(int formid);
07b54c 49     Map<Integer,List<T9842Entity>> getAllFuncLinks(int formid, int formType);
484907 50
F 51     Map getMatCodeBySerialNumberInventory(SerialNumberEntity entity);
a6a76f 52 }