📄 fieldlistmgr.java
字号:
package com.yuanchung.sales.service.config;
import java.util.List;
import com.yuanchung.sales.exception.ApplicationException;
import com.yuanchung.sales.model.config.ConfigTree;
import com.yuanchung.sales.model.config.FieldList;
public interface FieldListMgr {
public List getByConfigTree(ConfigTree configTree)throws ApplicationException;
public FieldList getById(java.lang.Integer id)throws ApplicationException;
public void delete(FieldList fieldList)throws ApplicationException;
public void save(FieldList fieldList)throws ApplicationException;
public void update(FieldList fieldList);
//接口
public FieldList getBizType();
public FieldList getIndustryType();
public FieldList getIndustryOf();
public FieldList getEmployee_Num();
public FieldList getRegionOf();
public FieldList getProvince();
public FieldList getCity();
public FieldList getCounty();
public FieldList getManager_Level();
public FieldList getCustomerState();
public FieldList getHonestGrade();
public FieldList getCustomerSource();
public FieldList getSatulation();
public FieldList getEducation();
public FieldList getStageOf();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -