mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-19 17:58:17 +08:00
15 lines
299 B
Java
15 lines
299 B
Java
package com.ruoyi.winery.service;
|
|
|
|
import com.ruoyi.winery.domain.winery.WineryOrders;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
|
|
/**
|
|
* 客户订单Service接口
|
|
*
|
|
* @author ruoyi
|
|
* @date 2020-12-28
|
|
*/
|
|
public interface IWineryOrdersService extends IService<WineryOrders> {
|
|
|
|
}
|