package com.bonus.lease.dao; import java.util.List; import com.bonus.core.BonusBatis; import com.bonus.lease.beans.LeaseApplicationBean; import com.bonus.sys.BaseDao; //租赁申请 @BonusBatis public interface LeaseApplicationDao extends BaseDao{ String findApplyNumber(LeaseApplicationBean o); String findLeaseApplyNumber(LeaseApplicationBean o); Integer deleteApply(LeaseApplicationBean o); List getApplyNumberById(); void delByNumber(String applyNumber); void delByNumber(LeaseApplicationBean leaseApplicationBean); List getApplyNumberById(LeaseApplicationBean o); List getTaskDetails(LeaseApplicationBean o); List getSubInfo(LeaseApplicationBean o); }