Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_ht
Overview
Overview
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
pseer
gxpt_ht
Commits
88617da6
Commit
88617da6
authored
Jan 23, 2024
by
吕明尚
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
注销是否脏房字段
parent
14e2d707
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
SRoom.java
share-system/src/main/java/share/system/domain/SRoom.java
+5
-5
SRoomMapper.xml
...e-system/src/main/resources/mapper/system/SRoomMapper.xml
+6
-6
No files found.
share-system/src/main/java/share/system/domain/SRoom.java
View file @
88617da6
...
...
@@ -80,11 +80,11 @@ public class SRoom extends BaseEntity
@Excel
(
name
=
"其他可能硬件接入参数(备用2)"
)
private
String
params2
;
/**
* 是否脏房
*/
@Excel
(
name
=
"是否脏房(0:否,1:是)"
)
private
Integer
isDirtyRoom
;
//
/**
//
* 是否脏房
//
*/
//
@Excel(name = "是否脏房(0:否,1:是)")
//
private Integer isDirtyRoom;
/**
* 套餐ID
...
...
share-system/src/main/resources/mapper/system/SRoomMapper.xml
View file @
88617da6
...
...
@@ -14,7 +14,7 @@
<result
property=
"info"
column=
"info"
/>
<result
property=
"status"
column=
"status"
/>
<result
property=
"price"
column=
"price"
/>
<
result
property=
"isDirtyRoom"
column=
"is_dirty_room"
/
>
<
!-- <result property="isDirtyRoom" column="is_dirty_room"/>--
>
<result
property=
"doorLockCode"
column=
"door_lock_code"
/>
<result
property=
"electricControlCode"
column=
"electric_control_code"
/>
<result
property=
"password"
column=
"password"
/>
...
...
@@ -37,7 +37,7 @@
info,
status,
price,
is_dirty_room,
<!-- is_dirty_room,-->
door_lock_code,
electric_control_code,
password,
...
...
@@ -62,7 +62,7 @@
<if
test=
"info != null and info != ''"
>
and info = #{info}
</if>
<if
test=
"status != null and status != '' or status ==0"
>
and status = #{status}
</if>
<if
test=
"price != null "
>
and price = #{price}
</if>
<
if
test=
"isDirtyRoom != null "
>
and is_dirty_room = #{isDirtyRoom}
</if
>
<
!-- <if test="isDirtyRoom != null ">and is_dirty_room = #{isDirtyRoom}</if>--
>
<if
test=
"doorLockCode != null and doorLockCode != ''"
>
and door_lock_code = #{doorLockCode}
</if>
<if
test=
"electricControlCode != null and electricControlCode != ''"
>
and electric_control_code = #{electricControlCode}
</if>
<if
test=
"password != null and password != ''"
>
and password = #{password}
</if>
...
...
@@ -87,7 +87,7 @@
<if
test=
"info != null"
>
info,
</if>
<if
test=
"status != null"
>
status,
</if>
<if
test=
"price != null"
>
price,
</if>
<
if
test=
"isDirtyRoom != null"
>
is_dirty_room,
</if
>
<
!-- <if test="isDirtyRoom != null">is_dirty_room,</if> --
>
<if
test=
"doorLockCode != null"
>
door_lock_code,
</if>
<if
test=
"electricControlCode != null"
>
electric_control_code,
</if>
<if
test=
"password != null"
>
password,
</if>
...
...
@@ -108,7 +108,7 @@
<if
test=
"info != null"
>
#{info},
</if>
<if
test=
"status != null"
>
#{status},
</if>
<if
test=
"price != null"
>
#{price},
</if>
<
if
test=
"isDirtyRoom != null"
>
#{isDirtyRoom},
</if
>
<
!-- <if test="isDirtyRoom != null">#{isDirtyRoom},</if> --
>
<if
test=
"doorLockCode != null"
>
#{doorLockCode},
</if>
<if
test=
"electricControlCode != null"
>
#{electricControlCode},
</if>
<if
test=
"password != null"
>
#{password},
</if>
...
...
@@ -133,7 +133,7 @@
<if
test=
"info != null"
>
info = #{info},
</if>
<if
test=
"status != null"
>
status = #{status},
</if>
<if
test=
"price != null"
>
price = #{price},
</if>
<
if
test=
"isDirtyRoom != null"
>
is_dirty_room = #{isDirtyRoom},
</if
>
<
!-- <if test="isDirtyRoom != null">is_dirty_room = #{isDirtyRoom},</if> --
>
<if
test=
"doorLockCode != null"
>
door_lock_code = #{doorLockCode},
</if>
<if
test=
"electricControlCode != null"
>
electric_control_code = #{electricControlCode},
</if>
<if
test=
"password != null"
>
password = #{password},
</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