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
e6d9e20f
Commit
e6d9e20f
authored
Feb 25, 2025
by
EDY
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化
parent
b076622d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletion
+19
-1
BaseCustomInfo.java
...java/com/ruoyi/system/domain/business/BaseCustomInfo.java
+14
-0
BaseCustomInfoMapper.xml
...c/main/resources/mapper/business/BaseCustomInfoMapper.xml
+5
-1
No files found.
ruoyi-system/src/main/java/com/ruoyi/system/domain/business/BaseCustomInfo.java
View file @
e6d9e20f
...
@@ -76,6 +76,12 @@ public class BaseCustomInfo extends BaseEntity
...
@@ -76,6 +76,12 @@ public class BaseCustomInfo extends BaseEntity
@Excel
(
name
=
"负责人"
)
@Excel
(
name
=
"负责人"
)
private
String
fzr
;
private
String
fzr
;
/** 标签 */
@Excel
(
name
=
"标签"
)
private
String
bq
;
/** 备注 */
/** 备注 */
@Excel
(
name
=
"备注"
)
@Excel
(
name
=
"备注"
)
private
String
bz
;
private
String
bz
;
...
@@ -340,4 +346,12 @@ public class BaseCustomInfo extends BaseEntity
...
@@ -340,4 +346,12 @@ public class BaseCustomInfo extends BaseEntity
public
void
setRubbishFlag
(
Integer
rubbishFlag
)
{
public
void
setRubbishFlag
(
Integer
rubbishFlag
)
{
this
.
rubbishFlag
=
rubbishFlag
;
this
.
rubbishFlag
=
rubbishFlag
;
}
}
public
String
getBq
()
{
return
bq
;
}
public
void
setBq
(
String
bq
)
{
this
.
bq
=
bq
;
}
}
}
ruoyi-system/src/main/resources/mapper/business/BaseCustomInfoMapper.xml
View file @
e6d9e20f
...
@@ -19,6 +19,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -19,6 +19,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result
property=
"khzt"
column=
"khzt"
/>
<result
property=
"khzt"
column=
"khzt"
/>
<result
property=
"gs"
column=
"gs"
/>
<result
property=
"gs"
column=
"gs"
/>
<result
property=
"fzr"
column=
"fzr"
/>
<result
property=
"fzr"
column=
"fzr"
/>
<result
property=
"bq"
column=
"bq"
/>
<result
property=
"bz"
column=
"bz"
/>
<result
property=
"bz"
column=
"bz"
/>
<result
property=
"deleteFlag"
column=
"delete_flag"
/>
<result
property=
"deleteFlag"
column=
"delete_flag"
/>
<result
property=
"createTime"
column=
"create_time"
/>
<result
property=
"createTime"
column=
"create_time"
/>
...
@@ -28,7 +29,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -28,7 +29,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap>
</resultMap>
<sql
id=
"selectBaseCustomInfoVo"
>
<sql
id=
"selectBaseCustomInfoVo"
>
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
select id, khxm, khgs, khly, cplb, sjh, wx, khdz, khxq, khhy, yxdj, khzt, gs, fzr,b
q,b
z, delete_flag, create_time, create_by, update_time, update_by from base_custom_info
</sql>
</sql>
<select
id=
"selectBaseCustomInfoList"
parameterType=
"BaseCustomInfo"
resultMap=
"BaseCustomInfoResult"
>
<select
id=
"selectBaseCustomInfoList"
parameterType=
"BaseCustomInfo"
resultMap=
"BaseCustomInfoResult"
>
...
@@ -106,6 +107,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -106,6 +107,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"khzt != null"
>
khzt,
</if>
<if
test=
"khzt != null"
>
khzt,
</if>
<if
test=
"gs != null"
>
gs,
</if>
<if
test=
"gs != null"
>
gs,
</if>
<if
test=
"fzr != null"
>
fzr,
</if>
<if
test=
"fzr != null"
>
fzr,
</if>
<if
test=
"bq != null"
>
bq,
</if>
<if
test=
"bz != null"
>
bz,
</if>
<if
test=
"bz != null"
>
bz,
</if>
<if
test=
"deleteFlag != null"
>
delete_flag,
</if>
<if
test=
"deleteFlag != null"
>
delete_flag,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
...
@@ -127,6 +129,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -127,6 +129,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"khzt != null"
>
#{khzt},
</if>
<if
test=
"khzt != null"
>
#{khzt},
</if>
<if
test=
"gs != null"
>
#{gs},
</if>
<if
test=
"gs != null"
>
#{gs},
</if>
<if
test=
"fzr != null"
>
#{fzr},
</if>
<if
test=
"fzr != null"
>
#{fzr},
</if>
<if
test=
"bq != null"
>
#{bq},
</if>
<if
test=
"bz != null"
>
#{bz},
</if>
<if
test=
"bz != null"
>
#{bz},
</if>
<if
test=
"deleteFlag != null"
>
#{deleteFlag},
</if>
<if
test=
"deleteFlag != null"
>
#{deleteFlag},
</if>
<if
test=
"createTime != null"
>
#{createTime},
</if>
<if
test=
"createTime != null"
>
#{createTime},
</if>
...
@@ -152,6 +155,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -152,6 +155,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"khzt != null"
>
khzt = #{khzt},
</if>
<if
test=
"khzt != null"
>
khzt = #{khzt},
</if>
<if
test=
"gs != null"
>
gs = #{gs},
</if>
<if
test=
"gs != null"
>
gs = #{gs},
</if>
<if
test=
"fzr != null"
>
fzr = #{fzr},
</if>
<if
test=
"fzr != null"
>
fzr = #{fzr},
</if>
<if
test=
"bq != null"
>
bq = #{bq},
</if>
<if
test=
"bz != null"
>
bz = #{bz},
</if>
<if
test=
"bz != null"
>
bz = #{bz},
</if>
<if
test=
"deleteFlag != null"
>
delete_flag = #{deleteFlag},
</if>
<if
test=
"deleteFlag != null"
>
delete_flag = #{deleteFlag},
</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