package com.changhong.epc.tenant.mapper.tenant.bill;
|
|
|
import java.util.List;
|
|
import org.apache.ibatis.annotations.Param;
|
|
import com.changhong.epc.bean.tenant.bill.BillData;
|
import com.iemsoft.framework.cloud.mybatis.common.MybatisBaseMapper;
|
|
|
public interface BillDataMapper extends MybatisBaseMapper<BillData>{
|
|
/**
|
* 根据orderCode ,j_id 查询票据信息
|
* @param billData
|
* @return
|
*/
|
BillData selectByOrderCodeAndJ(@Param("orderCode") String orderCode, @Param("jId")Integer jId);
|
|
List<BillData> selectByOrderCode(@Param("orderCode") String orderCode);
|
|
int deleteByOrderCode(@Param("orderCode") String orderCode);
|
|
}
|