zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.changhong.epc.parsing.service.bill.cpnval;
 
import java.util.List;
 
import com.changhong.epc.bean.form.CpnVal;
import com.changhong.epc.bean.form.FormBaseEntity;
import com.changhong.epc.constter.parsing.journey.JourneyKey;
 
/**
 * 将行程添加到对应的控件
 * @author wangZX
 *
 */
public interface IBillToCpnValData<T> extends JourneyKey {
    
    public void setDatSource(T data, FormBaseEntity formAll);
    
    public void analysisSource();
    
    /**
     * 选择用那个子表单
     */
    //public List<CpnVal> subFormsSelect();
    
    /**
     * 获得已经处理好的行程控件  有值的那种
     * @return
     */
    public List<List<CpnVal>> getAllJourneyCpn();
    
    /**
     * 获得行程子表单 (子表单本身)
     * @return
     */
    public CpnVal getJourneySubForm();
    
    /**
     * 为每个票据添加对应的行程ID
     * @param JourneyIds
     */
    public void setEachBillJourneyId(List<Integer> JourneyIds);
}