123456789101112131415161718192021222324 |
- /**
- * output package name
- */
- package com.kingdee.eas.custom.bill.salary.app;
- import com.kingdee.bos.BOSException;
- import com.kingdee.bos.Context;
- import com.kingdee.eas.framework.batchHandler.RequestContext;
- import com.kingdee.eas.framework.batchHandler.ResponseContext;
- /**
- * output class name
- */
- public class SalaryBagListUIHandler extends AbstractSalaryBagListUIHandler
- {
- protected void _handleInit(RequestContext request,ResponseContext response, Context context) throws Exception {
- super._handleInit(request,response,context);
- }
- protected void _handleActionTDPrint(RequestContext request,ResponseContext response, Context context) throws Exception {
- }
- protected void _handleActionTDPrintPreview(RequestContext request,ResponseContext response, Context context) throws Exception {
- }
- }
|