Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ximai
mes
Commits
aa1ce55f
Commit
aa1ce55f
authored
Nov 15, 2024
by
李驰骋
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
作业单元添加序列号、产线名字段
parent
b093df5e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
0 deletions
+12
-0
MdItemVo.java
mes/src/main/java/com/ximai/mes/md/vo/MdItemVo.java
+3
-0
MdWorkunitVo.java
mes/src/main/java/com/ximai/mes/md/vo/MdWorkunitVo.java
+3
-0
MdItemMapper.xml
mes/src/main/resources/mapper/md/MdItemMapper.xml
+1
-0
MdWorkunitMapper.xml
mes/src/main/resources/mapper/md/MdWorkunitMapper.xml
+5
-0
No files found.
mes/src/main/java/com/ximai/mes/md/vo/MdItemVo.java
View file @
aa1ce55f
...
@@ -44,6 +44,9 @@ public class MdItemVo extends BaseEntity {
...
@@ -44,6 +44,9 @@ public class MdItemVo extends BaseEntity {
@Excel
(
name
=
"物料/产品名称"
,
type
=
Excel
.
Type
.
ALL
)
@Excel
(
name
=
"物料/产品名称"
,
type
=
Excel
.
Type
.
ALL
)
private
String
itemName
;
private
String
itemName
;
@Excel
(
name
=
"所属产线"
,
type
=
Excel
.
Type
.
ALL
)
private
String
lineName
;
private
String
productEnglishName
;
private
String
productEnglishName
;
@Excel
(
name
=
"规格型号"
,
type
=
Excel
.
Type
.
ALL
)
@Excel
(
name
=
"规格型号"
,
type
=
Excel
.
Type
.
ALL
)
...
...
mes/src/main/java/com/ximai/mes/md/vo/MdWorkunitVo.java
View file @
aa1ce55f
...
@@ -50,6 +50,9 @@ public class MdWorkunitVo extends BaseEntity {
...
@@ -50,6 +50,9 @@ public class MdWorkunitVo extends BaseEntity {
@ApiModelProperty
(
"机台顺序"
)
@ApiModelProperty
(
"机台顺序"
)
private
Integer
serial
;
private
Integer
serial
;
@ApiModelProperty
(
"所属产线"
)
private
String
lineName
;
/**
/**
* 工作站编码
* 工作站编码
*/
*/
...
...
mes/src/main/resources/mapper/md/MdItemMapper.xml
View file @
aa1ce55f
...
@@ -117,6 +117,7 @@
...
@@ -117,6 +117,7 @@
mi.item_english_name,
mi.item_english_name,
mi.item_no,
mi.item_no,
mi.message,
mi.message,
mi.line_name,
mi.specification,
mi.specification,
mi.unit_of_measure,
mi.unit_of_measure,
mi.item_or_product,
mi.item_or_product,
...
...
mes/src/main/resources/mapper/md/MdWorkunitMapper.xml
View file @
aa1ce55f
...
@@ -168,6 +168,8 @@
...
@@ -168,6 +168,8 @@
ws.workstation_code,
ws.workstation_code,
ws.workstation_name,
ws.workstation_name,
w.fault_flag,
w.fault_flag,
w.line_name,
w.serial,
w.enable_flag,
w.enable_flag,
w.solidify_time,
w.solidify_time,
w.treating_thickness_min,
w.treating_thickness_min,
...
@@ -199,6 +201,7 @@
...
@@ -199,6 +201,7 @@
</if>
</if>
<if
test=
"enableFlag != null and enableFlag != ''"
>
and w.enable_flag = #{enableFlag}
</if>
<if
test=
"enableFlag != null and enableFlag != ''"
>
and w.enable_flag = #{enableFlag}
</if>
<if
test=
"faultFlag != null and faultFlag != ''"
>
and w.fault_flag = #{faultFlag}
</if>
<if
test=
"faultFlag != null and faultFlag != ''"
>
and w.fault_flag = #{faultFlag}
</if>
<if
test=
"lineName != null and lineName != ''"
>
and w.line_name = #{lineName}
</if>
</where>
</where>
</select>
</select>
...
@@ -210,6 +213,8 @@
...
@@ -210,6 +213,8 @@
w.workunit_code,
w.workunit_code,
w.workunit_name,
w.workunit_name,
w.fault_flag,
w.fault_flag,
w.line_name,
w.serial,
w.enable_flag,
w.enable_flag,
w.remark,
w.remark,
w.workstation_code,
w.workstation_code,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment