zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
 
}