Administrator
2018-11-23 8b65bf7ad1ecc40b5d4d25568f6ec76e0614f48b
增加mapper
1个文件已添加
22 ■■■■■ 已修改文件
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/goods/CommonGoodsMapper.java 22 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/goods/CommonGoodsMapper.java
New file
@@ -0,0 +1,22 @@
package com.yeshi.fanli.dao.mybatis.goods;
import org.apache.ibatis.annotations.Param;
import com.yeshi.fanli.goods.CommonGoods;
public interface CommonGoodsMapper {
    int deleteByPrimaryKey(Long id);
    int insert(CommonGoods record);
    int insertSelective(CommonGoods record);
    CommonGoods selectByPrimaryKey(Long id);
    CommonGoods selectByGoodsIdAndGoodsType(@Param("goodsId") Long goodsId, @Param("goodsType") int goodsType);
    int updateByPrimaryKeySelective(CommonGoods record);
    int updateByPrimaryKey(CommonGoods record);
}