package com.fadu.jeefw.service.lawer;

import com.fadu.core.service.Service;
import com.fadu.jeefw.model.web.LawyerWithdrawVo;
import com.fadu.model.lawyer.LawyerWithdraw;

import java.util.List;

/**
 * 提现
 *
 */
public interface LawyerWithdrawService extends Service<LawyerWithdraw> {
	public void createLawyerWithdraw(LawyerWithdraw lawyerComment);
	public List<LawyerWithdrawVo> fromEntityToVO(List<LawyerWithdraw> resultList);
	
	/**
	 * 审核提现通过
	 * @param vo
	 */
	public void pass(LawyerWithdrawVo vo);
}