You've already forked FrameTour-BE
13 lines
362 B
Java
13 lines
362 B
Java
package com.ycwl.basic.mapper;
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.ycwl.basic.model.pc.mp.MpNotifyConfigEntity;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
|
import java.util.List;
|
|
|
|
@Mapper
|
|
public interface MpNotifyConfigMapper extends BaseMapper<MpNotifyConfigEntity> {
|
|
List<MpNotifyConfigEntity> listByMpId(Integer mpId);
|
|
}
|