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);
|
}
|