无关风月
1 天以前 25b19e60e004290531f61fdf608d1adb5e531903
ruoyi-system/src/main/java/com/ruoyi/system/mapper/TLocationTypeMapper.java
@@ -1,7 +1,13 @@
package com.ruoyi.system.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.common.basic.PageInfo;
import com.ruoyi.system.model.TLocationType;
import com.ruoyi.system.query.LocationTypeListQuery;
import com.ruoyi.system.vo.system.LocationTypeListVO;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
 * <p>
@@ -13,4 +19,7 @@
 */
public interface TLocationTypeMapper extends BaseMapper<TLocationType> {
    List<LocationTypeListVO> pageList(@Param("query")LocationTypeListQuery query, @Param("pageInfo")PageInfo<LocationTypeListVO> pageInfo);
}