Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
K
klck
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
位宇华
klck
Commits
7efee5d1
Commit
7efee5d1
authored
Sep 26, 2023
by
lvzhuangzhuang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
b618b6db
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
11 deletions
+11
-11
ruoyi-supplies/src/main/java/com/ruoyi/system/domain/ActSuppliesSixMinesSummaryTable.java
.../ruoyi/system/domain/ActSuppliesSixMinesSummaryTable.java
+6
-6
ruoyi-supplies/src/main/resources/mapper/system/ActSuppliesCleaningRuleMapper.xml
...resources/mapper/system/ActSuppliesCleaningRuleMapper.xml
+3
-3
ruoyi-ui/src/views/system/supplies/index.vue
ruoyi-ui/src/views/system/supplies/index.vue
+2
-2
No files found.
ruoyi-supplies/src/main/java/com/ruoyi/system/domain/ActSuppliesSixMinesSummaryTable.java
View file @
7efee5d1
...
...
@@ -51,7 +51,7 @@ public class ActSuppliesSixMinesSummaryTable extends BaseEntity
/** 日期 */
@Excel
(
name
=
"日期"
)
private
String
d
ate
;
private
String
hD
ate
;
public
static
long
getSerialVersionUID
()
{
return
serialVersionUID
;
...
...
@@ -131,12 +131,12 @@ public class ActSuppliesSixMinesSummaryTable extends BaseEntity
this
.
createBy
=
createBy
;
}
public
String
getDate
()
{
return
d
ate
;
public
String
get
h
Date
()
{
return
hD
ate
;
}
public
void
set
Date
(
String
d
ate
)
{
this
.
date
=
d
ate
;
public
void
set
hDate
(
String
hD
ate
)
{
this
.
hDate
=
hD
ate
;
}
@Override
...
...
@@ -151,7 +151,7 @@ public class ActSuppliesSixMinesSummaryTable extends BaseEntity
", nuitPrice="
+
nuitPrice
+
", money="
+
money
+
", createBy='"
+
createBy
+
'\''
+
",
date="
+
d
ate
+
",
hDate="
+
hD
ate
+
'}'
;
}
}
ruoyi-supplies/src/main/resources/mapper/system/ActSuppliesCleaningRuleMapper.xml
View file @
7efee5d1
...
...
@@ -13,7 +13,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result
property=
"nuitPrice"
column=
"nuit_price"
/>
<result
property=
"money"
column=
"money"
/>
<result
property=
"createBy"
column=
"create_by"
/>
<result
property=
"
d
ate"
column=
"date"
/>
<result
property=
"
hD
ate"
column=
"date"
/>
</resultMap>
<insert
id=
"addActSuppliesSixMinesSummaryTable"
parameterType=
"ActSuppliesSixMinesSummaryTable"
useGeneratedKeys=
"true"
keyProperty=
"id"
>
...
...
@@ -27,7 +27,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"nuitPrice != null"
>
nuit_price,
</if>
<if
test=
"money != null"
>
money,
</if>
<if
test=
"createBy != null"
>
create_by,
</if>
<if
test=
"
date != null"
>
date,
</if>
<if
test=
"
hDate != null"
>
h_
date,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"hId != null"
>
#{hId},
</if>
...
...
@@ -38,7 +38,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"nuitPrice != null"
>
#{nuitPrice},
</if>
<if
test=
"money != null"
>
#{money},
</if>
<if
test=
"createBy != null"
>
#{createBy},
</if>
<if
test=
"
date != null"
>
#{d
ate},
</if>
<if
test=
"
hDate != null"
>
#{hD
ate},
</if>
</trim>
</insert>
...
...
ruoyi-ui/src/views/system/supplies/index.vue
View file @
7efee5d1
...
...
@@ -116,7 +116,7 @@ export default {
nuitPrice
:
""
,
money
:
""
,
createBy
:
""
,
d
ate
:
null
hD
ate
:
null
},
dfrom
:{},
...
...
@@ -1289,7 +1289,7 @@ export default {
this
.
froms
.
nuitPrice
=
a5
;
this
.
froms
.
money
=
a6
;
this
.
froms
.
createBy
=
data
[
i
].
createBy
;
this
.
froms
.
d
ate
=
data
[
i
].
date
;
this
.
froms
.
hD
ate
=
data
[
i
].
date
;
addActSuppliesSixMinesSummaryTable
(
this
.
froms
).
then
(
response
=>
{});
}
}
...
...
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