您的位置:首页 > 其它

IPayablebillItf

2015-12-26 19:03 225 查看
package nc.itf.arap.payablebill;

import nc.vo.pub.AggregatedValueObject;
import nc.vo.pub.BusinessException;

/**
* 应付单管理审批弃审中间表数据操作接口
* @author 陈志锋
* 2015-12-25
*/
public interface IPayablebillItf {

/**
* 应付单审批通过后回写中间表数据
* @param aggvo
* @return
* @throws BusinessException
*/
public Boolean insertInfoMiddle(AggregatedValueObject aggvo)throws BusinessException;

/**
* 应付单弃审后中间表数据删除
* @param billPk
* @return
* @throws BusinessException
*/
public Boolean deteleInfoMiddle(String billPk)throws BusinessException;

/**
* 根据应付单主键获取单据状态
* @param pk_payablebill
* @return
* @throws BusinessException
*/
public String getPayableStatue(String pk_payablebill)throws BusinessException;
}


  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: