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
3e527dc7
Commit
3e527dc7
authored
Dec 24, 2025
by
yubin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导入修改
parent
50b3e8ce
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
12 行增加
和
9 行删除
+12
-9
ruoyi-inventory/src/main/java/com/ruoyi/inventory/domain/vo/OutboundTemplateVO.java
+12
-9
没有找到文件。
ruoyi-inventory/src/main/java/com/ruoyi/inventory/domain/vo/OutboundTemplateVO.java
View file @
3e527dc7
...
@@ -28,21 +28,18 @@ public class OutboundTemplateVO extends BaseEntity {
...
@@ -28,21 +28,18 @@ public class OutboundTemplateVO extends BaseEntity {
@Excel
(
name
=
"日期"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
WHITE
)
@Excel
(
name
=
"日期"
,
width
=
30
,
dateFormat
=
"yyyy-MM-dd"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
WHITE
)
private
Date
inboundDate
;
private
Date
inboundDate
;
/** 订单类型 */
@Excel
(
name
=
"订单类型"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
YELLOW
)
private
String
orderTypeId
;
/** SAP号 */
/** SAP号 */
@Excel
(
name
=
"SAP No"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
YELLOW
)
@Excel
(
name
=
"SAP No"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
YELLOW
)
private
String
sapNo
;
private
String
sapNo
;
/** 物料ID */
private
String
materialId
;
/** 货物名称 */
/** 货物名称 */
@Excel
(
name
=
"物料名称"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
WHITE
)
@Excel
(
name
=
"物料名称"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
WHITE
)
private
String
materialName
;
private
String
materialName
;
/** 物料ID */
private
String
materialId
;
/** TS Code */
/** TS Code */
@Excel
(
name
=
"TS Code"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
WHITE
)
@Excel
(
name
=
"TS Code"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
WHITE
)
private
String
tsCode
;
private
String
tsCode
;
...
@@ -55,16 +52,19 @@ public class OutboundTemplateVO extends BaseEntity {
...
@@ -55,16 +52,19 @@ public class OutboundTemplateVO extends BaseEntity {
@Excel
(
name
=
"计划数量"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
WHITE
)
@Excel
(
name
=
"计划数量"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
WHITE
)
private
Long
plannedQuantity
;
private
Long
plannedQuantity
;
@Excel
(
name
=
"约数"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
WHITE
)
private
Double
divisor
;
/** 件重 */
/** 件重 */
@Excel
(
name
=
"件重"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
WHITE
)
@Excel
(
name
=
"件重"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
WHITE
)
private
Double
pieceWeight
;
private
Double
pieceWeight
;
/** 约数 */
@Excel
(
name
=
"约数"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
WHITE
)
private
Double
divisor
;
/** 件数(实际件数) */
/** 件数(实际件数) */
@Excel
(
name
=
"件数"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
WHITE
)
@Excel
(
name
=
"件数"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
WHITE
)
private
Long
actualPackages
;
private
Long
actualPackages
;
/** 实发数量(实际数量) */
/** 实发数量(实际数量) */
@Excel
(
name
=
"实发数量"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
YELLOW
)
@Excel
(
name
=
"实发数量"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
YELLOW
)
private
Long
actualQuantity
;
private
Long
actualQuantity
;
...
@@ -112,6 +112,9 @@ public class OutboundTemplateVO extends BaseEntity {
...
@@ -112,6 +112,9 @@ public class OutboundTemplateVO extends BaseEntity {
private
String
systemNo
;
private
String
systemNo
;
/** 订单类型 */
@Excel
(
name
=
"订单类型"
,
headerColor
=
IndexedColors
.
BLACK
,
headerBackgroundColor
=
IndexedColors
.
YELLOW
)
private
String
orderTypeId
;
/** 货主ID */
/** 货主ID */
private
String
ownerId
;
private
String
ownerId
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论