ilistofvaluesservice.java
来自「一个很好的开源项目管理系统源代码」· Java 代码 · 共 159 行
JAVA
159 行
package net.java.workeffort.service;import java.util.List;import java.util.Map;import net.java.workeffort.service.dao.IBaseDao;/** * List of values service interface. * <p> * Spring creates a proxy of this interface and the clients invoke methods on the proxy instead of directly invoking * <code>WorkTypeService</code>. Transaction management is added using spring AOP. * </p> * @author Antony Joseph */public interface IListOfValuesService { IBaseDao getDao(); void setDao(IBaseDao dao); /** * @return list of LabelValueBean */ List getCachedRequirementTypeLov(); /** * @return list of LabelValueBean */ List getCachedWorkTypeLov(); /** * @return list of LabelValueBean */ List getCachedWorkStatusLov(); /** * @return list of LabelValueBean */ List getCachedWorkPurposeTypeLov(); /** * @return list of LabelValueBean */ List getCachedWorkAssociationTypeLov(); /** * @return list of LabelValueBean */ List getCachedWorkRoleLov(); /** * @return list of LabelValueBean */ List getCachedWorkFxdastAsgnStatusLov(); /** * @return list of LabelValueBean */ List getCachedPartTypeLov(); /** * @return list of LabelValueBean */ List getCachedFixedAssetTypeLov(); /** * @return list of LabelValueBean */ List getCachedSkillTypeLov(); /** * @return list of LabelValueBean */ List getCachedDeliverableTypeLov(); /** * @return list of LabelValueBean */ List getCachedPartStatusLov(); /** * @return list of LabelValueBean */ List getCachedPartyTypeLov(); /** * @return list of LabelValueBean */ List getCachedFacilityTypeLov(); /** * @return list of LabelValueBean */ List getCachedTargetTypeLov(); /** * @return list of LabelValueBean */ List getCachedRateTypeLov(); /** * @return list of LabelValueBean */ List getCachedCurrencyLov(); /** * @return list of LabelValueBean */ List getCachedYesNoLov(); /** * @return list of LabelValueBean */ List getCachedTimesheetApprovalLov(); /** * @return list of LabelValueBean */ List getCachedDeliverableLov(); /** * @return list of LabelValueBean */ List getCachedFixedAssetLov(); /** * @return list of LabelValueBean */ List getCachedProductLov(); /** * @return list of LabelValueBean */ List getCachedWorkLov(); /** * @return list of LabelValueBean */ List getCachedRequirementLov(); /** * @return list of LabelValueBean */ List getCachedFacilityLov(); /** * @return list of LabelValueBean */ List getCachedSkillLov(); /** * @return list of LabelValueBean */ List getCachedRoleLov();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?