Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
ry-crm
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
田光明
ry-crm
Commits
325225c0
Commit
325225c0
authored
Feb 24, 2025
by
EDY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化
parent
c6521048
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
BaseCustomInfo.java
...java/com/ruoyi/system/domain/business/BaseCustomInfo.java
+10
-0
BaseCustomInfoMapper.xml
...c/main/resources/mapper/business/BaseCustomInfoMapper.xml
+2
-0
No files found.
ruoyi-system/src/main/java/com/ruoyi/system/domain/business/BaseCustomInfo.java
View file @
325225c0
...
@@ -98,6 +98,8 @@ public class BaseCustomInfo extends BaseEntity
...
@@ -98,6 +98,8 @@ public class BaseCustomInfo extends BaseEntity
private
Date
endTime
;
private
Date
endTime
;
private
Integer
rubbishFlag
;
public
void
setId
(
Long
id
)
public
void
setId
(
Long
id
)
{
{
this
.
id
=
id
;
this
.
id
=
id
;
...
@@ -330,4 +332,12 @@ public class BaseCustomInfo extends BaseEntity
...
@@ -330,4 +332,12 @@ public class BaseCustomInfo extends BaseEntity
public
void
setEndTime
(
Date
endTime
)
{
public
void
setEndTime
(
Date
endTime
)
{
this
.
endTime
=
endTime
;
this
.
endTime
=
endTime
;
}
}
public
Integer
getRubbishFlag
()
{
return
rubbishFlag
;
}
public
void
setRubbishFlag
(
Integer
rubbishFlag
)
{
this
.
rubbishFlag
=
rubbishFlag
;
}
}
}
ruoyi-system/src/main/resources/mapper/business/BaseCustomInfoMapper.xml
View file @
325225c0
...
@@ -79,6 +79,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -79,6 +79,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"bz != null and bz != ''"
>
and bz = #{bz}
</if>
<if
test=
"bz != null and bz != ''"
>
and bz = #{bz}
</if>
<if
test=
"deleteFlag != null "
>
and delete_flag = #{deleteFlag}
</if>
<if
test=
"deleteFlag != null "
>
and delete_flag = #{deleteFlag}
</if>
<if
test=
"startTime != null and endTime != null"
>
and create_time between #{startTime} and #{endTime}
</if>
<if
test=
"startTime != null and endTime != null"
>
and create_time between #{startTime} and #{endTime}
</if>
<if
test=
"rubbishFlag != null and rubbishFlag == 1"
>
and khzt = 7
</if>
<if
test=
"rubbishFlag != null and rubbishFlag == 0"
>
and khzt not in (7)
</if>
</where>
</where>
</select>
</select>
...
...
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