15 lines
304 B
Java
15 lines
304 B
Java
![]() |
package com.ruoyi.winery.service;
|
||
|
|
||
|
import com.ruoyi.winery.domain.AppUserAddress;
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
|
||
|
/**
|
||
|
* 用户收货地址Service接口
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2021-01-16
|
||
|
*/
|
||
|
public interface IAppUserAddressService extends IService<AppUserAddress> {
|
||
|
|
||
|
}
|