itimesheetservice.java

来自「一个很好的开源项目管理系统源代码」· Java 代码 · 共 49 行

JAVA
49
字号
package net.java.workeffort.service;import java.util.List;import net.java.workeffort.service.domain.PageResult;import net.java.workeffort.service.domain.Timesheet;import net.java.workeffort.service.domain.TimesheetBatchJobQuery;import net.java.workeffort.service.domain.TimesheetQuery;import net.java.workeffort.service.support.DuplicateTimesheetException;import net.java.workeffort.service.support.OptimisticLockingException;/** * Timesheet service interface. * <p> * Spring creates a proxy of this interface and the clients invoke methods on * the proxy instead of directly invoking <code>TimesheetService</code>. * Transaction management, security and other cross cutting concerns are added * using spring AOP. * @author Antony Joseph */public interface ITimesheetService {    Timesheet getTimesheetUser(TimesheetQuery query);    Timesheet getTimesheetSupervisor(TimesheetQuery query);    Timesheet getTimesheetManagement(TimesheetQuery query);    PageResult getPageResultTimesheetUser(TimesheetQuery query);    PageResult getPageResultTimesheetSupervisor(TimesheetQuery query);    PageResult getPageResultTimesheetManagement(TimesheetQuery query);    void updateTimesheetUser(Timesheet timesheet)            throws OptimisticLockingException;    void updateTimesheetSupervisor(Timesheet timesheet)            throws OptimisticLockingException;    void insertTimesheetUser(Timesheet timesheet)            throws DuplicateTimesheetException;    List getListPartyWorkLov(String partyCd);    List getListPartyRateTypeLov(String partyCd);    List getBatchDetails(TimesheetBatchJobQuery query);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?