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
9df72956
Commit
9df72956
authored
Mar 22, 2021
by
zp
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
923f55b7
2586dc34
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
217 additions
and
113 deletions
+217
-113
FundCount.java
src/main/java/com/tanpu/fund/entity/generator/FundCount.java
+5
-0
FundCountExample.java
...ava/com/tanpu/fund/entity/generator/FundCountExample.java
+60
-0
FundCountMapper.xml
src/main/resources/mybatis/generator/FundCountMapper.xml
+152
-113
No files found.
src/main/java/com/tanpu/fund/entity/generator/FundCount.java
View file @
9df72956
...
...
@@ -51,6 +51,11 @@ public class FundCount {
*/
private
Integer
substrategy
;
/**
* 基金成立日期
*/
private
Date
inceptionDate
;
/**
* 是否可预约 0:不可预约 1:可预约
*/
...
...
src/main/java/com/tanpu/fund/entity/generator/FundCountExample.java
View file @
9df72956
...
...
@@ -411,6 +411,66 @@ public class FundCountExample {
return
(
Criteria
)
this
;
}
public
Criteria
andInceptionDateIsNull
()
{
addCriterion
(
"inception_date is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andInceptionDateIsNotNull
()
{
addCriterion
(
"inception_date is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andInceptionDateEqualTo
(
Date
value
)
{
addCriterionForJDBCDate
(
"inception_date ="
,
value
,
"inceptionDate"
);
return
(
Criteria
)
this
;
}
public
Criteria
andInceptionDateNotEqualTo
(
Date
value
)
{
addCriterionForJDBCDate
(
"inception_date <>"
,
value
,
"inceptionDate"
);
return
(
Criteria
)
this
;
}
public
Criteria
andInceptionDateGreaterThan
(
Date
value
)
{
addCriterionForJDBCDate
(
"inception_date >"
,
value
,
"inceptionDate"
);
return
(
Criteria
)
this
;
}
public
Criteria
andInceptionDateGreaterThanOrEqualTo
(
Date
value
)
{
addCriterionForJDBCDate
(
"inception_date >="
,
value
,
"inceptionDate"
);
return
(
Criteria
)
this
;
}
public
Criteria
andInceptionDateLessThan
(
Date
value
)
{
addCriterionForJDBCDate
(
"inception_date <"
,
value
,
"inceptionDate"
);
return
(
Criteria
)
this
;
}
public
Criteria
andInceptionDateLessThanOrEqualTo
(
Date
value
)
{
addCriterionForJDBCDate
(
"inception_date <="
,
value
,
"inceptionDate"
);
return
(
Criteria
)
this
;
}
public
Criteria
andInceptionDateIn
(
List
<
Date
>
values
)
{
addCriterionForJDBCDate
(
"inception_date in"
,
values
,
"inceptionDate"
);
return
(
Criteria
)
this
;
}
public
Criteria
andInceptionDateNotIn
(
List
<
Date
>
values
)
{
addCriterionForJDBCDate
(
"inception_date not in"
,
values
,
"inceptionDate"
);
return
(
Criteria
)
this
;
}
public
Criteria
andInceptionDateBetween
(
Date
value1
,
Date
value2
)
{
addCriterionForJDBCDate
(
"inception_date between"
,
value1
,
value2
,
"inceptionDate"
);
return
(
Criteria
)
this
;
}
public
Criteria
andInceptionDateNotBetween
(
Date
value1
,
Date
value2
)
{
addCriterionForJDBCDate
(
"inception_date not between"
,
value1
,
value2
,
"inceptionDate"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTypeIsNull
()
{
addCriterion
(
"`type` is null"
);
return
(
Criteria
)
this
;
...
...
src/main/resources/mybatis/generator/FundCountMapper.xml
View file @
9df72956
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