Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in
Toggle navigation
T
tamp_fund
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
周鹏
tamp_fund
Commits
8847eaaa
Commit
8847eaaa
authored
Dec 07, 2021
by
张亚辉
Browse files
Options
Browse Files
Download
Plain Diff
基金搜索
parents
b1991a48
a7d9e2c1
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
596 additions
and
491 deletions
+596
-491
FundInfo.java
src/main/java/com/tanpu/fund/entity/generator/FundInfo.java
+5
-0
FundInfoExample.java
...java/com/tanpu/fund/entity/generator/FundInfoExample.java
+60
-0
FundInfoMapper.xml
src/main/resources/mybatis/generator/FundInfoMapper.xml
+531
-491
No files found.
src/main/java/com/tanpu/fund/entity/generator/FundInfo.java
View file @
8847eaaa
...
@@ -266,6 +266,11 @@ public class FundInfo {
...
@@ -266,6 +266,11 @@ public class FundInfo {
private
String
redeemDay
;
private
String
redeemDay
;
/**
* 1 有净值 0 没有净值
*/
private
Integer
hasNav
;
/**
/**
* 券商资管产品特点
* 券商资管产品特点
*/
*/
...
...
src/main/java/com/tanpu/fund/entity/generator/FundInfoExample.java
View file @
8847eaaa
...
@@ -3389,6 +3389,66 @@ public class FundInfoExample {
...
@@ -3389,6 +3389,66 @@ public class FundInfoExample {
addCriterion
(
"redeem_day not between"
,
value1
,
value2
,
"redeemDay"
);
addCriterion
(
"redeem_day not between"
,
value1
,
value2
,
"redeemDay"
);
return
(
Criteria
)
this
;
return
(
Criteria
)
this
;
}
}
public
Criteria
andHasNavIsNull
()
{
addCriterion
(
"has_nav is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andHasNavIsNotNull
()
{
addCriterion
(
"has_nav is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andHasNavEqualTo
(
Integer
value
)
{
addCriterion
(
"has_nav ="
,
value
,
"hasNav"
);
return
(
Criteria
)
this
;
}
public
Criteria
andHasNavNotEqualTo
(
Integer
value
)
{
addCriterion
(
"has_nav <>"
,
value
,
"hasNav"
);
return
(
Criteria
)
this
;
}
public
Criteria
andHasNavGreaterThan
(
Integer
value
)
{
addCriterion
(
"has_nav >"
,
value
,
"hasNav"
);
return
(
Criteria
)
this
;
}
public
Criteria
andHasNavGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"has_nav >="
,
value
,
"hasNav"
);
return
(
Criteria
)
this
;
}
public
Criteria
andHasNavLessThan
(
Integer
value
)
{
addCriterion
(
"has_nav <"
,
value
,
"hasNav"
);
return
(
Criteria
)
this
;
}
public
Criteria
andHasNavLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"has_nav <="
,
value
,
"hasNav"
);
return
(
Criteria
)
this
;
}
public
Criteria
andHasNavIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"has_nav in"
,
values
,
"hasNav"
);
return
(
Criteria
)
this
;
}
public
Criteria
andHasNavNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"has_nav not in"
,
values
,
"hasNav"
);
return
(
Criteria
)
this
;
}
public
Criteria
andHasNavBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"has_nav between"
,
value1
,
value2
,
"hasNav"
);
return
(
Criteria
)
this
;
}
public
Criteria
andHasNavNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"has_nav not between"
,
value1
,
value2
,
"hasNav"
);
return
(
Criteria
)
this
;
}
}
}
public
static
class
Criteria
extends
GeneratedCriteria
{
public
static
class
Criteria
extends
GeneratedCriteria
{
...
...
src/main/resources/mybatis/generator/FundInfoMapper.xml
View file @
8847eaaa
This diff is collapsed.
Click to expand it.
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