2021与蓝度共同重构项目,服务端
liuhaonan
2021-12-10 b351d83856603abbca985508000828b71712894d
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.sandu.ximon.dao.mapper;
 
import com.sandu.ximon.dao.domain.PlayPlan;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
 
/**
 * @Entity com.sandu.ximon.dao.domain.PlayPlan
 */
@Mapper
public interface PlayPlanMapper extends BaseMapper<PlayPlan> {
 
}