yujian
2019-03-11 366bfe4202088ce4c7d1a9ed34a9c50d013e5396
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
26
package com.yeshi.fanli.dao.mybatis;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.entity.bus.clazz.GoodsClass;
 
public interface GoodsClassMapper {
 
    String getKwById(Long id);
    
    GoodsClass selectByPrimaryKey(Long id);
    
    // 查询所有
    List<GoodsClass> queryAll();
    
    int updateByPrimaryKeySelective(GoodsClass record);
    
    /**
     * 根据系统id查询分类
     * @param systemId
     * @return
     */
    List<GoodsClass> listGoodsClassBySystemId(@Param("systemId") Long systemId);
}