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
c7f8100f
Commit
c7f8100f
authored
Feb 24, 2025
by
EDY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug
parent
02e828b9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
BaseCustomInfo.java
...java/com/ruoyi/system/domain/business/BaseCustomInfo.java
+12
-0
BaseCustomInfoMapper.xml
...c/main/resources/mapper/business/BaseCustomInfoMapper.xml
+6
-1
No files found.
ruoyi-system/src/main/java/com/ruoyi/system/domain/business/BaseCustomInfo.java
View file @
c7f8100f
...
...
@@ -74,6 +74,10 @@ public class BaseCustomInfo extends BaseEntity
@Excel
(
name
=
"负责人"
)
private
String
fzr
;
/** 备注 */
@Excel
(
name
=
"备注"
)
private
String
bz
;
/** 是否删除 1 删除 0 正常 */
@Excel
(
name
=
"是否删除 1 删除 0 正常"
)
private
Long
deleteFlag
;
...
...
@@ -256,4 +260,12 @@ public class BaseCustomInfo extends BaseEntity
public
void
setGsId
(
Long
gsId
)
{
this
.
gsId
=
gsId
;
}
public
String
getBz
()
{
return
bz
;
}
public
void
setBz
(
String
bz
)
{
this
.
bz
=
bz
;
}
}
ruoyi-system/src/main/resources/mapper/business/BaseCustomInfoMapper.xml
View file @
c7f8100f
...
...
@@ -19,6 +19,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result
property=
"khzt"
column=
"khzt"
/>
<result
property=
"gs"
column=
"gs"
/>
<result
property=
"fzr"
column=
"fzr"
/>
<result
property=
"bz"
column=
"bz"
/>
<result
property=
"deleteFlag"
column=
"delete_flag"
/>
<result
property=
"createTime"
column=
"create_time"
/>
<result
property=
"createBy"
column=
"create_by"
/>
...
...
@@ -27,7 +28,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap>
<sql
id=
"selectBaseCustomInfoVo"
>
select id, khxm, khgs, khly, cplb, sjh, wx, khdz, khxq, khhy, yxdj, khzt, gs, fzr, delete_flag, create_time, create_by, update_time, update_by from base_custom_info
select id, khxm, khgs, khly, cplb, sjh, wx, khdz, khxq, khhy, yxdj, khzt, gs, fzr,
bz,
delete_flag, create_time, create_by, update_time, update_by from base_custom_info
</sql>
<select
id=
"selectBaseCustomInfoList"
parameterType=
"BaseCustomInfo"
resultMap=
"BaseCustomInfoResult"
>
...
...
@@ -51,6 +52,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"khzt != null "
>
and khzt = #{khzt}
</if>
<if
test=
"gs != null "
>
and gs = #{gs}
</if>
<if
test=
"fzr != null and fzr != ''"
>
and fzr = #{fzr}
</if>
<if
test=
"bz != null and bz != ''"
>
and bz = #{bz}
</if>
<if
test=
"deleteFlag != null "
>
and delete_flag = #{deleteFlag}
</if>
</where>
</select>
...
...
@@ -76,6 +78,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"khzt != null"
>
khzt,
</if>
<if
test=
"gs != null"
>
gs,
</if>
<if
test=
"fzr != null"
>
fzr,
</if>
<if
test=
"bz != null"
>
bz,
</if>
<if
test=
"deleteFlag != null"
>
delete_flag,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"createBy != null"
>
create_by,
</if>
...
...
@@ -96,6 +99,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"khzt != null"
>
#{khzt},
</if>
<if
test=
"gs != null"
>
#{gs},
</if>
<if
test=
"fzr != null"
>
#{fzr},
</if>
<if
test=
"bz != null"
>
#{bz},
</if>
<if
test=
"deleteFlag != null"
>
#{deleteFlag},
</if>
<if
test=
"createTime != null"
>
#{createTime},
</if>
<if
test=
"createBy != null"
>
#{createBy},
</if>
...
...
@@ -120,6 +124,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"khzt != null"
>
khzt = #{khzt},
</if>
<if
test=
"gs != null"
>
gs = #{gs},
</if>
<if
test=
"fzr != null"
>
fzr = #{fzr},
</if>
<if
test=
"bz != null"
>
bz = #{bz},
</if>
<if
test=
"deleteFlag != null"
>
delete_flag = #{deleteFlag},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime},
</if>
<if
test=
"createBy != null"
>
create_by = #{createBy},
</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