package com.stylefeng.guns.modular.system.service; import com.baomidou.mybatisplus.plugins.Page; import com.stylefeng.guns.modular.system.model.TUserAddress; import com.baomidou.mybatisplus.service.IService; import com.stylefeng.guns.modular.system.model.TUserAddressVo; import java.util.List; /** *

* 服务类 *

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