zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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.shlanbao.tzsc.plugin.service;
 
 
/**
 * 加载下拉框
 * @author Leejean
 * @create 2014年11月28日上午9:13:10
 */
public interface LoadComboboxServiceI {
    /**
     * 加载combobox
     * @author Leejean
     * @create 2014年11月28日上午9:10:30
     * @param scope  ALL:初始化系统时默认加载所有,当某主数据业务变更时,指定scope单独加载
     * scope定义参考 ComboboxType 成员变量定义
     */
    public void initCombobox(String scope);
    
    /**
     * 加载辅料系数数据
     * 
     */
    public void getAllMatParams();
 
 
    void initShiftTeam();
}