fs-danaus
2023-02-27 ecf825bbe8ede4e012ef4b502937b51867064170
提交 | 用户 | age
900851 1 package com.yc.open.deli.service.v2;
F 2
193788 3 import com.yc.entity.DataSourceEntity;
900851 4 import com.yc.open.deli.entity.*;
F 5 import com.yc.open.init.Task;
27e89b 6 import com.yc.open.deli.entity.OrderReturnEntity;
753f63 7 import com.yc.open.mutual.schedule.GateEntity;
900851 8
F 9 import java.util.List;
f785d2 10 import java.util.Map;
900851 11
F 12
13 public interface DeLiIfc {
14     /**
15      *
16      *取得客户资料信息
17      *
18      */
19   public List<T110203Entity> getCustomerList(String ctlcode);
20
21     /**
22      * 客户跟进记录
23      * @return
24      */
a557a9 25   public List<T170139Entity> getT170139List(String docCode,Task task, String dbid);
900851 26
F 27     /**
28      * 根据doccode 更新测量单 isPosted为1,表示已推送成功
29      * @param doccodes
30      * @return
31      */
32   public  int updatePrimaryKey(String doccodes,String tableName);
33
34     /**
35      * 取门店信息
36      * @return
37      */
38     public  List<T110601Entity> getT110601List();
39
40     /**
41      * 销售订单
42      * @return
43      */
44     public  List<T120201Entity> getT120201List(String docCode,Task task);
45     /**
46      * 采购订单
47      * @return
48      */
49     public  List<T130301Entity> getT130301List(String docCode,Task task);
50     /**
51      * 派工订单
52      * @return
53      */
54     List<T640201Entity> getT640201List(String docCode,Task task);
55     /**
56      * 测量单
57      * @return
58      */
59     T640109Entity getT640109(String doccode, String docitem, String rowid);
60     /**
61      * 推送测量单状态
62      * @return
63      */
64     List<T640109Entity> getT640109(String docCode,Task task);
65     /**
66      * 通过对照表取德立代理商,,门店信息
67      * @return
68      */
69     Agent get110606(String ccCode);
70
71     public CanelEntity getCanelEntityByTableName(String hdtable,String dttable,String doccode,int formid);
72
ecf825 73     Integer bindUserAccount(Map map,String userCode);
F 74     Integer unbindUserAccount(String userCode);
799c6e 75
526a72 76     T150201Entity getT150201(String docCode, Task task,String dbid);
ecf825 77     T150201Entity getT150206(String docCode, Task task,String dbid);
753f63 78     T640115Entity getT640115(String docCode, Task task,String dbid);
F 79     Get640115Entity getT640115V2(GateEntity entity, Task task);
80
e3c243 81     Map<String, Object> do640115(Post640115Entity post640115Entity,String dbid);
f785d2 82
F 83     String doCancel(DeliCancelEntity cancel);
88ac29 84
F 85     void doMeasureUpdate(MeasureEntity measureEntity);
27e89b 86
dd27c6 87     OrderReturnEntity getT130301(GateEntity entity, Task task);
671e86 88
F 89     void getDeliCvent(GateEntity entity);
900851 90 }