fieldlistmgr.java
来自「基于Sturts+Spring+Hibernate的一个高级销售管理系统。内容丰」· Java 代码 · 共 43 行
JAVA
43 行
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 + =
减小字号Ctrl + -
显示快捷键?