Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zh-baseversion-project
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
王浩
zh-baseversion-project
Commits
30aa0d6a
Commit
30aa0d6a
authored
Jul 18, 2024
by
wanghao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1 供需平衡-停气监管-增加 企业端上传时间字段
parent
74192512
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
TSupBalStopSup.java
...rc/main/java/com/zehong/system/domain/TSupBalStopSup.java
+14
-0
TSupBalStopSupMapper.xml
...src/main/resources/mapper/system/TSupBalStopSupMapper.xml
+5
-0
No files found.
zh-baseversion-system/src/main/java/com/zehong/system/domain/TSupBalStopSup.java
View file @
30aa0d6a
...
@@ -65,6 +65,12 @@ public class TSupBalStopSup extends BaseEntity
...
@@ -65,6 +65,12 @@ public class TSupBalStopSup extends BaseEntity
@Excel
(
name
=
"上报状态 0-未上报,1-已上报"
)
@Excel
(
name
=
"上报状态 0-未上报,1-已上报"
)
private
String
fRepStatus
;
private
String
fRepStatus
;
/**
* 企业端上传时间
*/
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
String
entRepTime
;
/** 停气区域 */
/** 停气区域 */
@Excel
(
name
=
"停气区域"
)
@Excel
(
name
=
"停气区域"
)
private
String
fGasStopArea
;
private
String
fGasStopArea
;
...
@@ -237,6 +243,14 @@ public class TSupBalStopSup extends BaseEntity
...
@@ -237,6 +243,14 @@ public class TSupBalStopSup extends BaseEntity
this
.
fGovUploadTime
=
fGovUploadTime
;
this
.
fGovUploadTime
=
fGovUploadTime
;
}
}
public
String
getEntRepTime
()
{
return
entRepTime
;
}
public
void
setEntRepTime
(
String
entRepTime
)
{
this
.
entRepTime
=
entRepTime
;
}
@Override
@Override
public
String
toString
()
{
public
String
toString
()
{
return
new
ToStringBuilder
(
this
,
ToStringStyle
.
MULTI_LINE_STYLE
)
return
new
ToStringBuilder
(
this
,
ToStringStyle
.
MULTI_LINE_STYLE
)
...
...
zh-baseversion-system/src/main/resources/mapper/system/TSupBalStopSupMapper.xml
View file @
30aa0d6a
...
@@ -16,6 +16,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -16,6 +16,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result
property=
"fStopProgress"
column=
"f_stop_progress"
/>
<result
property=
"fStopProgress"
column=
"f_stop_progress"
/>
<result
property=
"fRecoveryGasTime"
column=
"f_recovery_gas_time"
/>
<result
property=
"fRecoveryGasTime"
column=
"f_recovery_gas_time"
/>
<result
property=
"fRepStatus"
column=
"f_rep_status"
/>
<result
property=
"fRepStatus"
column=
"f_rep_status"
/>
<result
property=
"entRepTime"
column=
"f_ent_rep_time"
/>
<result
property=
"fGasStopArea"
column=
"f_gas_stop_area"
/>
<result
property=
"fGasStopArea"
column=
"f_gas_stop_area"
/>
<result
property=
"createBy"
column=
"create_by"
/>
<result
property=
"createBy"
column=
"create_by"
/>
<result
property=
"createTime"
column=
"create_time"
/>
<result
property=
"createTime"
column=
"create_time"
/>
...
@@ -40,6 +41,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -40,6 +41,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
st.f_stop_progress,
st.f_stop_progress,
st.f_recovery_gas_time,
st.f_recovery_gas_time,
st.f_rep_status,
st.f_rep_status,
st.f_ent_rep_time,
st.f_gas_stop_area,
st.f_gas_stop_area,
st.create_by,
st.create_by,
st.create_time,
st.create_time,
...
@@ -86,6 +88,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -86,6 +88,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"fStopProgress != null and fStopProgress != ''"
>
f_stop_progress,
</if>
<if
test=
"fStopProgress != null and fStopProgress != ''"
>
f_stop_progress,
</if>
<if
test=
"fRecoveryGasTime != null"
>
f_recovery_gas_time,
</if>
<if
test=
"fRecoveryGasTime != null"
>
f_recovery_gas_time,
</if>
<if
test=
"fRepStatus != null and fRepStatus != ''"
>
f_rep_status,
</if>
<if
test=
"fRepStatus != null and fRepStatus != ''"
>
f_rep_status,
</if>
<if
test=
"entRepTime != null and entRepTime != ''"
>
f_ent_rep_time,
</if>
<if
test=
"fGasStopArea != null"
>
f_gas_stop_area,
</if>
<if
test=
"fGasStopArea != null"
>
f_gas_stop_area,
</if>
<if
test=
"createBy != null"
>
create_by,
</if>
<if
test=
"createBy != null"
>
create_by,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
...
@@ -107,6 +110,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -107,6 +110,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"fStopProgress != null and fStopProgress != ''"
>
#{fStopProgress},
</if>
<if
test=
"fStopProgress != null and fStopProgress != ''"
>
#{fStopProgress},
</if>
<if
test=
"fRecoveryGasTime != null"
>
#{fRecoveryGasTime},
</if>
<if
test=
"fRecoveryGasTime != null"
>
#{fRecoveryGasTime},
</if>
<if
test=
"fRepStatus != null and fRepStatus != ''"
>
#{fRepStatus},
</if>
<if
test=
"fRepStatus != null and fRepStatus != ''"
>
#{fRepStatus},
</if>
<if
test=
"entRepTime != null and entRepTime != ''"
>
#{entRepTime},
</if>
<if
test=
"fGasStopArea != null"
>
#{fGasStopArea},
</if>
<if
test=
"fGasStopArea != null"
>
#{fGasStopArea},
</if>
<if
test=
"createBy != null"
>
#{createBy},
</if>
<if
test=
"createBy != null"
>
#{createBy},
</if>
<if
test=
"createTime != null"
>
#{createTime},
</if>
<if
test=
"createTime != null"
>
#{createTime},
</if>
...
@@ -132,6 +136,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -132,6 +136,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"fStopProgress != null and fStopProgress != ''"
>
f_stop_progress = #{fStopProgress},
</if>
<if
test=
"fStopProgress != null and fStopProgress != ''"
>
f_stop_progress = #{fStopProgress},
</if>
<if
test=
"fRecoveryGasTime != null"
>
f_recovery_gas_time = #{fRecoveryGasTime},
</if>
<if
test=
"fRecoveryGasTime != null"
>
f_recovery_gas_time = #{fRecoveryGasTime},
</if>
<if
test=
"fRepStatus != null and fRepStatus != ''"
>
f_rep_status = #{fRepStatus},
</if>
<if
test=
"fRepStatus != null and fRepStatus != ''"
>
f_rep_status = #{fRepStatus},
</if>
<if
test=
"entRepTime != null and entRepTime != ''"
>
f_ent_rep_time = #{entRepTime},
</if>
<if
test=
"fGasStopArea != null"
>
f_gas_stop_area = #{fGasStopArea},
</if>
<if
test=
"fGasStopArea != null"
>
f_gas_stop_area = #{fGasStopArea},
</if>
<if
test=
"createBy != null"
>
create_by = #{createBy},
</if>
<if
test=
"createBy != null"
>
create_by = #{createBy},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime},
</if>
...
...
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