package com.yeshi.fanli.lijin.dao;
|
|
import com.ks.lib.common.dao.BaseMapper;
|
import com.yeshi.fanli.lijin.entity.MsgLijinVIPDetail;
|
import org.apache.ibatis.annotations.Param;
|
import org.springframework.stereotype.Repository;
|
|
import java.util.List;
|
|
@Repository
|
public interface MsgLijinVIPDetailMapper extends BaseMapper<MsgLijinVIPDetail> {
|
|
|
List<MsgLijinVIPDetail> listByPrimaryKeys(@Param("ids") List<Long> ids);
|
|
|
}
|