1234567891011121314151617181920212223242526272829 |
- package com.steerinfo.dil.mapper;
- import com.steerinfo.dil.model.SaleLog;
- import com.steerinfo.framework.mapper.IBaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import org.apache.ibatis.annotations.Select;
- import java.math.BigDecimal;
- import java.util.List;
- import java.util.Map;
- @Mapper
- public interface SaleLogMapper extends IBaseMapper<SaleLog, BigDecimal> {
- @Select("select SEQ_SALE_LOG.nextval from dual")
- BigDecimal selectMaxId();
-
- List<Map<String,Object>> selectAllLog(Map<String,Object> map);
-
- String getUserNameById(Map<String,Object> map);
-
- List<BigDecimal> getOrderIds(@Param("orderNumber") String orderNumber);
-
- BigDecimal getOrderIdByTotal(Map<String,Object> map);
- }
|