package com.stylefeng.guns.modular.system.dao; import com.baomidou.mybatisplus.plugins.Page; import com.stylefeng.guns.modular.system.model.TUserAddress; import com.baomidou.mybatisplus.mapper.BaseMapper; import com.stylefeng.guns.modular.system.model.TUserAddressVo; import org.apache.ibatis.annotations.Param; import java.util.List; /** *

* Mapper 接口 *

* * @author stylefeng * @since 2022-12-30 */ public interface TUserAddressMapper extends BaseMapper { List getList(@Param("tUserAddressVoPage") Page tUserAddressVoPage, @Param("userId") int userId); }