仪表盘
版本库
文件存储
活动
搜索
登录
main
/
product-inventory-management-after
产品供销存-后端
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
feat(sales): 添加销售台账审核反审功能 1.在销售台账下新增子级菜单:未审批订单和反审核数据。分别进行订单审 核和查看反审核的历史数据。 ...
liding
2026-05-29
7b6741f6ccf11d0043ad94914d41a9bd23452d00
[product-inventory-management-after.git]
/
src
/
main
/
java
/
com
/
ruoyi
/
sales
/
service
/
SalesQuotationProductService.java
1
2
3
4
5
6
7
8
package com.ruoyi.sales.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.sales.pojo.SalesQuotationProduct;
public interface SalesQuotationProductService extends IService<SalesQuotationProduct> {
}