| New file |
| | |
| | | package com.gk.firework.Mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gk.firework.Domain.CustomerInfo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Repository |
| | | public interface CustomerInfoMapper extends BaseMapper<CustomerInfo> { |
| | | |
| | | CustomerInfo selectCustomerByIdCardNum(@Param("idCardNumber") String idCardNumber); |
| | | |
| | | CustomerInfo getCustomerBySaleOrder(@Param("orderCode") String orderCode); |
| | | } |