admin
2020-06-20 0ab8a2ea521a838124f517daf4e61dee971a6d4c
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.ks.tool.bkz.dao.mybatis.sdlj;
 
import com.ks.tool.bkz.dao.BaseMapper;
import com.ks.tool.bkz.entity.sdlj.SDLJSimpleGoodsInfo;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.math.BigDecimal;
 
@Repository
public interface SDLJSimpleGoodsInfoMapper extends BaseMapper<SDLJSimpleGoodsInfo> {
    SDLJSimpleGoodsInfo selectByGoodsIdAndPromotionAmount(@Param("goodsId") Long goodsId,@Param("money") BigDecimal money);
}