Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
M
mini-wms
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Members
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
周海峰
mini-wms
Commits
c38b7b1a
Commit
c38b7b1a
authored
Dec 10, 2025
by
zhangtw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
未进行版本管理的VO
parent
bd8d2429
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
119 行增加
和
0 行删除
+119
-0
ruoyi-inventory/src/main/java/com/ruoyi/inventory/domain/vo/InboundMaterialTotalVO.java
+43
-0
ruoyi-inventory/src/main/java/com/ruoyi/inventory/domain/vo/InventoryExceedWarnVO.java
+76
-0
没有找到文件。
ruoyi-inventory/src/main/java/com/ruoyi/inventory/domain/vo/InboundMaterialTotalVO.java
0 → 100644
View file @
c38b7b1a
package
com
.
ruoyi
.
inventory
.
domain
.
vo
;
public
class
InboundMaterialTotalVO
{
/** 物料名*/
private
String
materialName
;
/** 总数*/
private
Long
totalQuantity
;
/** 总金额*/
private
Double
totalMoney
;
public
String
getMaterialName
()
{
return
materialName
;
}
public
void
setMaterialName
(
String
materialName
)
{
this
.
materialName
=
materialName
;
}
public
Double
getTotalMoney
()
{
return
totalMoney
;
}
public
void
setTotalMoney
(
Double
totalMoney
)
{
this
.
totalMoney
=
totalMoney
;
}
public
Long
getTotalQuantity
()
{
return
totalQuantity
;
}
public
void
setTotalQuantity
(
Long
totalQuantity
)
{
this
.
totalQuantity
=
totalQuantity
;
}
@Override
public
String
toString
()
{
return
"InboundMaterialTotalVO{"
+
"materialName='"
+
materialName
+
'\''
+
", totalQuantity="
+
totalQuantity
+
", totalMoney="
+
totalMoney
+
'}'
;
}
}
ruoyi-inventory/src/main/java/com/ruoyi/inventory/domain/vo/InventoryExceedWarnVO.java
0 → 100644
View file @
c38b7b1a
package
com
.
ruoyi
.
inventory
.
domain
.
vo
;
public
class
InventoryExceedWarnVO
{
/** 物料名 */
private
String
materialName
;
/** 所属分类 */
private
String
categoryName
;
/** 物料号 */
private
String
sapNo
;
/** 库存 */
private
Long
quantity
;
/** 最低库存 */
private
Long
minStockLevel
;
/** 最高库存 */
private
Long
maxStockLevel
;
public
String
getMaterialName
()
{
return
materialName
;
}
public
void
setMaterialName
(
String
materialName
)
{
this
.
materialName
=
materialName
;
}
public
String
getCategoryName
()
{
return
categoryName
;
}
public
void
setCategoryName
(
String
categoryName
)
{
this
.
categoryName
=
categoryName
;
}
public
String
getSapNo
()
{
return
sapNo
;
}
public
void
setSapNo
(
String
sapNo
)
{
this
.
sapNo
=
sapNo
;
}
public
Long
getQuantity
()
{
return
quantity
;
}
public
void
setQuantity
(
Long
quantity
)
{
this
.
quantity
=
quantity
;
}
public
Long
getMinStockLevel
()
{
return
minStockLevel
;
}
public
void
setMinStockLevel
(
Long
minStockLevel
)
{
this
.
minStockLevel
=
minStockLevel
;
}
public
Long
getMaxStockLevel
()
{
return
maxStockLevel
;
}
public
void
setMaxStockLevel
(
Long
maxStockLevel
)
{
this
.
maxStockLevel
=
maxStockLevel
;
}
@Override
public
String
toString
()
{
return
"InventoryExceedWarnVO{"
+
"materialName='"
+
materialName
+
'\''
+
", categoryName='"
+
categoryName
+
'\''
+
", sapNo='"
+
sapNo
+
'\''
+
", quantity="
+
quantity
+
", minStockLevel="
+
minStockLevel
+
", maxStockLevel="
+
maxStockLevel
+
'}'
;
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论