package com.goafanti.order.service; import java.util.List; import com.goafanti.common.model.OutsourceOrganization; import com.goafanti.core.mybatis.page.Pagination; import com.goafanti.order.bo.OrderOutsourceBo; import com.goafanti.order.bo.OrderOutsourceDtails; import com.goafanti.order.bo.OutsourceOrganizationBo; public interface OutsourceOrgService { int addOutsourceOrg(OutsourceOrganization o); int updateOutsourceOrg(OutsourceOrganization o); int deleteOutsourceOrg(Integer id); List selectOutsourceOrg(String orderNo,String tid); List selectOrderOutsourceOrg(String orderNo); Pagination orderOutsourceList(String name, String contractNo, String starTime, String endTime,Integer refundStatus, Integer pageNo, Integer pageSize); OrderOutsourceDtails orderOutsourceDtails(String orderNo); int updateAuditOutsource(OrderOutsourceDtails o); Pagination salesmanOrderOutsourceList(String name, String contractNo, String starTime, String endTime, Integer refundStatus, Integer pageNo, Integer pageSize); }