Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dc-java
Overview
Overview
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
bltdc
dc-java
Commits
8c3bf9d3
Commit
8c3bf9d3
authored
Sep 09, 2019
by
yinyong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
自动备货范围
parent
f7a1a1e0
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1348 additions
and
0 deletions
+1348
-0
DcAutoStockUpRange.java
.../java/com/bailuntec/domain/entity/DcAutoStockUpRange.java
+92
-0
DcAutoStockUpRangeExample.java
...m/bailuntec/domain/example/DcAutoStockUpRangeExample.java
+805
-0
DcAutoStockUpRangeMapper.java
...n/java/com/bailuntec/mapper/DcAutoStockUpRangeMapper.java
+125
-0
DcAutoStockUpRangeMapper.xml
...in/java/com/bailuntec/mapper/DcAutoStockUpRangeMapper.xml
+326
-0
No files found.
data-common/src/main/java/com/bailuntec/domain/entity/DcAutoStockUpRange.java
0 → 100644
View file @
8c3bf9d3
package
com
.
bailuntec
.
domain
.
entity
;
import
lombok.Data
;
@Data
public
class
DcAutoStockUpRange
{
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column dc_auto_stock_up_range.id
*
* @mbg.generated
*/
private
Integer
id
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column dc_auto_stock_up_range.bailun_sku
*
* @mbg.generated
*/
private
String
bailunSku
;
/**
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column dc_auto_stock_up_range.warehouse_code
*
* @mbg.generated
*/
private
String
warehouseCode
;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
@Override
public
String
toString
()
{
StringBuilder
sb
=
new
StringBuilder
();
sb
.
append
(
getClass
().
getSimpleName
());
sb
.
append
(
" ["
);
sb
.
append
(
"Hash = "
).
append
(
hashCode
());
sb
.
append
(
", id="
).
append
(
id
);
sb
.
append
(
", bailunSku="
).
append
(
bailunSku
);
sb
.
append
(
", warehouseCode="
).
append
(
warehouseCode
);
sb
.
append
(
"]"
);
return
sb
.
toString
();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
@Override
public
boolean
equals
(
Object
that
)
{
if
(
this
==
that
)
{
return
true
;
}
if
(
that
==
null
)
{
return
false
;
}
if
(
getClass
()
!=
that
.
getClass
())
{
return
false
;
}
DcAutoStockUpRange
other
=
(
DcAutoStockUpRange
)
that
;
return
(
this
.
getId
()
==
null
?
other
.
getId
()
==
null
:
this
.
getId
().
equals
(
other
.
getId
()))
&&
(
this
.
getBailunSku
()
==
null
?
other
.
getBailunSku
()
==
null
:
this
.
getBailunSku
().
equals
(
other
.
getBailunSku
()))
&&
(
this
.
getWarehouseCode
()
==
null
?
other
.
getWarehouseCode
()
==
null
:
this
.
getWarehouseCode
().
equals
(
other
.
getWarehouseCode
()));
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
@Override
public
int
hashCode
()
{
final
int
prime
=
31
;
int
result
=
1
;
result
=
prime
*
result
+
((
getId
()
==
null
)
?
0
:
getId
().
hashCode
());
result
=
prime
*
result
+
((
getBailunSku
()
==
null
)
?
0
:
getBailunSku
().
hashCode
());
result
=
prime
*
result
+
((
getWarehouseCode
()
==
null
)
?
0
:
getWarehouseCode
().
hashCode
());
return
result
;
}
}
\ No newline at end of file
data-common/src/main/java/com/bailuntec/domain/example/DcAutoStockUpRangeExample.java
0 → 100644
View file @
8c3bf9d3
package
com
.
bailuntec
.
domain
.
example
;
import
java.util.ArrayList
;
import
java.util.List
;
public
class
DcAutoStockUpRangeExample
{
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
protected
String
orderByClause
;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
protected
boolean
distinct
;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
protected
List
<
Criteria
>
oredCriteria
;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
protected
Integer
offset
;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
protected
Integer
rows
;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
public
DcAutoStockUpRangeExample
()
{
oredCriteria
=
new
ArrayList
<
Criteria
>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
public
void
setOrderByClause
(
String
orderByClause
)
{
this
.
orderByClause
=
orderByClause
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
public
String
getOrderByClause
()
{
return
orderByClause
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
public
void
setDistinct
(
boolean
distinct
)
{
this
.
distinct
=
distinct
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
public
boolean
isDistinct
()
{
return
distinct
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
public
List
<
Criteria
>
getOredCriteria
()
{
return
oredCriteria
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
public
void
or
(
Criteria
criteria
)
{
oredCriteria
.
add
(
criteria
);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
public
Criteria
or
()
{
Criteria
criteria
=
createCriteriaInternal
();
oredCriteria
.
add
(
criteria
);
return
criteria
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
DcAutoStockUpRangeExample
orderBy
(
String
orderByClause
)
{
this
.
setOrderByClause
(
orderByClause
);
return
this
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
DcAutoStockUpRangeExample
orderBy
(
String
...
orderByClauses
)
{
StringBuffer
sb
=
new
StringBuffer
();
for
(
int
i
=
0
;
i
<
orderByClauses
.
length
;
i
++)
{
sb
.
append
(
orderByClauses
[
i
]);
if
(
i
<
orderByClauses
.
length
-
1
)
{
sb
.
append
(
" , "
);
}
}
this
.
setOrderByClause
(
sb
.
toString
());
return
this
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
public
Criteria
createCriteria
()
{
Criteria
criteria
=
createCriteriaInternal
();
if
(
oredCriteria
.
size
()
==
0
)
{
oredCriteria
.
add
(
criteria
);
}
return
criteria
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
protected
Criteria
createCriteriaInternal
()
{
Criteria
criteria
=
new
Criteria
(
this
);
return
criteria
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
public
void
clear
()
{
oredCriteria
.
clear
();
orderByClause
=
null
;
distinct
=
false
;
rows
=
null
;
offset
=
null
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
static
Criteria
newAndCreateCriteria
()
{
DcAutoStockUpRangeExample
example
=
new
DcAutoStockUpRangeExample
();
return
example
.
createCriteria
();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
DcAutoStockUpRangeExample
when
(
boolean
condition
,
IExampleWhen
then
)
{
if
(
condition
)
{
then
.
example
(
this
);
}
return
this
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
DcAutoStockUpRangeExample
when
(
boolean
condition
,
IExampleWhen
then
,
IExampleWhen
otherwise
)
{
if
(
condition
)
{
then
.
example
(
this
);
}
else
{
otherwise
.
example
(
this
);
}
return
this
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
void
setOffset
(
Integer
offset
)
{
this
.
offset
=
offset
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
Integer
getOffset
()
{
return
this
.
offset
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
void
setRows
(
Integer
rows
)
{
this
.
rows
=
rows
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
Integer
getRows
()
{
return
this
.
rows
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
DcAutoStockUpRangeExample
limit
(
Integer
rows
)
{
this
.
rows
=
rows
;
return
this
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
DcAutoStockUpRangeExample
limit
(
Integer
offset
,
Integer
rows
)
{
this
.
offset
=
offset
;
this
.
rows
=
rows
;
return
this
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
DcAutoStockUpRangeExample
page
(
Integer
page
,
Integer
pageSize
)
{
this
.
offset
=
page
*
pageSize
;
this
.
rows
=
pageSize
;
return
this
;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
protected
abstract
static
class
GeneratedCriteria
{
protected
List
<
Criterion
>
criteria
;
protected
GeneratedCriteria
()
{
super
();
criteria
=
new
ArrayList
<
Criterion
>();
}
public
boolean
isValid
()
{
return
criteria
.
size
()
>
0
;
}
public
List
<
Criterion
>
getAllCriteria
()
{
return
criteria
;
}
public
List
<
Criterion
>
getCriteria
()
{
return
criteria
;
}
protected
void
addCriterion
(
String
condition
)
{
if
(
condition
==
null
)
{
throw
new
RuntimeException
(
"Value for condition cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
));
}
protected
void
addCriterion
(
String
condition
,
Object
value
,
String
property
)
{
if
(
value
==
null
)
{
throw
new
RuntimeException
(
"Value for "
+
property
+
" cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
,
value
));
}
protected
void
addCriterion
(
String
condition
,
Object
value1
,
Object
value2
,
String
property
)
{
if
(
value1
==
null
||
value2
==
null
)
{
throw
new
RuntimeException
(
"Between values for "
+
property
+
" cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
,
value1
,
value2
));
}
public
Criteria
andIdIsNull
()
{
addCriterion
(
"id is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdIsNotNull
()
{
addCriterion
(
"id is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdEqualTo
(
Integer
value
)
{
addCriterion
(
"id ="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotEqualTo
(
Integer
value
)
{
addCriterion
(
"id <>"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdGreaterThan
(
Integer
value
)
{
addCriterion
(
"id >"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"id >="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdLessThan
(
Integer
value
)
{
addCriterion
(
"id <"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"id <="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"id in"
,
values
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"id not in"
,
values
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"id between"
,
value1
,
value2
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"id not between"
,
value1
,
value2
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andBailunSkuIsNull
()
{
addCriterion
(
"bailun_sku is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andBailunSkuIsNotNull
()
{
addCriterion
(
"bailun_sku is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andBailunSkuEqualTo
(
String
value
)
{
addCriterion
(
"bailun_sku ="
,
value
,
"bailunSku"
);
return
(
Criteria
)
this
;
}
public
Criteria
andBailunSkuNotEqualTo
(
String
value
)
{
addCriterion
(
"bailun_sku <>"
,
value
,
"bailunSku"
);
return
(
Criteria
)
this
;
}
public
Criteria
andBailunSkuGreaterThan
(
String
value
)
{
addCriterion
(
"bailun_sku >"
,
value
,
"bailunSku"
);
return
(
Criteria
)
this
;
}
public
Criteria
andBailunSkuGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"bailun_sku >="
,
value
,
"bailunSku"
);
return
(
Criteria
)
this
;
}
public
Criteria
andBailunSkuLessThan
(
String
value
)
{
addCriterion
(
"bailun_sku <"
,
value
,
"bailunSku"
);
return
(
Criteria
)
this
;
}
public
Criteria
andBailunSkuLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"bailun_sku <="
,
value
,
"bailunSku"
);
return
(
Criteria
)
this
;
}
public
Criteria
andBailunSkuLike
(
String
value
)
{
addCriterion
(
"bailun_sku like"
,
value
,
"bailunSku"
);
return
(
Criteria
)
this
;
}
public
Criteria
andBailunSkuNotLike
(
String
value
)
{
addCriterion
(
"bailun_sku not like"
,
value
,
"bailunSku"
);
return
(
Criteria
)
this
;
}
public
Criteria
andBailunSkuIn
(
List
<
String
>
values
)
{
addCriterion
(
"bailun_sku in"
,
values
,
"bailunSku"
);
return
(
Criteria
)
this
;
}
public
Criteria
andBailunSkuNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"bailun_sku not in"
,
values
,
"bailunSku"
);
return
(
Criteria
)
this
;
}
public
Criteria
andBailunSkuBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"bailun_sku between"
,
value1
,
value2
,
"bailunSku"
);
return
(
Criteria
)
this
;
}
public
Criteria
andBailunSkuNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"bailun_sku not between"
,
value1
,
value2
,
"bailunSku"
);
return
(
Criteria
)
this
;
}
public
Criteria
andWarehouseCodeIsNull
()
{
addCriterion
(
"warehouse_code is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andWarehouseCodeIsNotNull
()
{
addCriterion
(
"warehouse_code is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andWarehouseCodeEqualTo
(
String
value
)
{
addCriterion
(
"warehouse_code ="
,
value
,
"warehouseCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andWarehouseCodeNotEqualTo
(
String
value
)
{
addCriterion
(
"warehouse_code <>"
,
value
,
"warehouseCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andWarehouseCodeGreaterThan
(
String
value
)
{
addCriterion
(
"warehouse_code >"
,
value
,
"warehouseCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andWarehouseCodeGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"warehouse_code >="
,
value
,
"warehouseCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andWarehouseCodeLessThan
(
String
value
)
{
addCriterion
(
"warehouse_code <"
,
value
,
"warehouseCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andWarehouseCodeLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"warehouse_code <="
,
value
,
"warehouseCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andWarehouseCodeLike
(
String
value
)
{
addCriterion
(
"warehouse_code like"
,
value
,
"warehouseCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andWarehouseCodeNotLike
(
String
value
)
{
addCriterion
(
"warehouse_code not like"
,
value
,
"warehouseCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andWarehouseCodeIn
(
List
<
String
>
values
)
{
addCriterion
(
"warehouse_code in"
,
values
,
"warehouseCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andWarehouseCodeNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"warehouse_code not in"
,
values
,
"warehouseCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andWarehouseCodeBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"warehouse_code between"
,
value1
,
value2
,
"warehouseCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andWarehouseCodeNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"warehouse_code not between"
,
value1
,
value2
,
"warehouseCode"
);
return
(
Criteria
)
this
;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated do_not_delete_during_merge
*/
public
static
class
Criteria
extends
GeneratedCriteria
{
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
private
DcAutoStockUpRangeExample
example
;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
protected
Criteria
(
DcAutoStockUpRangeExample
example
)
{
super
();
this
.
example
=
example
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
DcAutoStockUpRangeExample
example
()
{
return
this
.
example
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
@Deprecated
public
Criteria
andIf
(
boolean
ifAdd
,
ICriteriaAdd
add
)
{
if
(
ifAdd
)
{
add
.
add
(
this
);
}
return
this
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
Criteria
when
(
boolean
condition
,
ICriteriaWhen
then
)
{
if
(
condition
)
{
then
.
criteria
(
this
);
}
return
this
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
Criteria
when
(
boolean
condition
,
ICriteriaWhen
then
,
ICriteriaWhen
otherwise
)
{
if
(
condition
)
{
then
.
criteria
(
this
);
}
else
{
otherwise
.
criteria
(
this
);
}
return
this
;
}
/**
* This interface was generated by MyBatis Generator.
* This interface corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
@Deprecated
public
interface
ICriteriaAdd
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
Criteria
add
(
Criteria
add
);
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
public
static
class
Criterion
{
private
String
condition
;
private
Object
value
;
private
Object
secondValue
;
private
boolean
noValue
;
private
boolean
singleValue
;
private
boolean
betweenValue
;
private
boolean
listValue
;
private
String
typeHandler
;
public
String
getCondition
()
{
return
condition
;
}
public
Object
getValue
()
{
return
value
;
}
public
Object
getSecondValue
()
{
return
secondValue
;
}
public
boolean
isNoValue
()
{
return
noValue
;
}
public
boolean
isSingleValue
()
{
return
singleValue
;
}
public
boolean
isBetweenValue
()
{
return
betweenValue
;
}
public
boolean
isListValue
()
{
return
listValue
;
}
public
String
getTypeHandler
()
{
return
typeHandler
;
}
protected
Criterion
(
String
condition
)
{
super
();
this
.
condition
=
condition
;
this
.
typeHandler
=
null
;
this
.
noValue
=
true
;
}
protected
Criterion
(
String
condition
,
Object
value
,
String
typeHandler
)
{
super
();
this
.
condition
=
condition
;
this
.
value
=
value
;
this
.
typeHandler
=
typeHandler
;
if
(
value
instanceof
List
<?>)
{
this
.
listValue
=
true
;
}
else
{
this
.
singleValue
=
true
;
}
}
protected
Criterion
(
String
condition
,
Object
value
)
{
this
(
condition
,
value
,
null
);
}
protected
Criterion
(
String
condition
,
Object
value
,
Object
secondValue
,
String
typeHandler
)
{
super
();
this
.
condition
=
condition
;
this
.
value
=
value
;
this
.
secondValue
=
secondValue
;
this
.
typeHandler
=
typeHandler
;
this
.
betweenValue
=
true
;
}
protected
Criterion
(
String
condition
,
Object
value
,
Object
secondValue
)
{
this
(
condition
,
value
,
secondValue
,
null
);
}
}
/**
* This interface was generated by MyBatis Generator.
* This interface corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
interface
ICriteriaWhen
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
void
criteria
(
Criteria
criteria
);
}
/**
* This interface was generated by MyBatis Generator.
* This interface corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
public
interface
IExampleWhen
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
void
example
(
DcAutoStockUpRangeExample
example
);
}
}
\ No newline at end of file
data-common/src/main/java/com/bailuntec/mapper/DcAutoStockUpRangeMapper.java
0 → 100644
View file @
8c3bf9d3
package
com
.
bailuntec
.
mapper
;
import
com.bailuntec.domain.entity.DcAutoStockUpRange
;
import
com.bailuntec.domain.example.DcAutoStockUpRangeExample
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.List
;
public
interface
DcAutoStockUpRangeMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
long
countByExample
(
DcAutoStockUpRangeExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
int
deleteByExample
(
DcAutoStockUpRangeExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
int
deleteByPrimaryKey
(
Integer
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
int
insert
(
DcAutoStockUpRange
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
int
insertSelective
(
DcAutoStockUpRange
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
DcAutoStockUpRange
selectOneByExample
(
DcAutoStockUpRangeExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
List
<
DcAutoStockUpRange
>
selectByExample
(
DcAutoStockUpRangeExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
DcAutoStockUpRange
selectByPrimaryKey
(
Integer
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
DcAutoStockUpRange
record
,
@Param
(
"example"
)
DcAutoStockUpRangeExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
DcAutoStockUpRange
record
,
@Param
(
"example"
)
DcAutoStockUpRangeExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
DcAutoStockUpRange
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
DcAutoStockUpRange
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
upsert
(
DcAutoStockUpRange
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table dc_auto_stock_up_range
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
upsertSelective
(
DcAutoStockUpRange
record
);
}
\ No newline at end of file
data-common/src/main/java/com/bailuntec/mapper/DcAutoStockUpRangeMapper.xml
0 → 100644
View file @
8c3bf9d3
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.bailuntec.mapper.DcAutoStockUpRangeMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.bailuntec.domain.entity.DcAutoStockUpRange"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<id
column=
"id"
jdbcType=
"INTEGER"
property=
"id"
/>
<result
column=
"bailun_sku"
jdbcType=
"VARCHAR"
property=
"bailunSku"
/>
<result
column=
"warehouse_code"
jdbcType=
"VARCHAR"
property=
"warehouseCode"
/>
</resultMap>
<sql
id=
"Example_Where_Clause"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<where>
<foreach
collection=
"oredCriteria"
item=
"criteria"
separator=
"or"
>
<if
test=
"criteria.valid"
>
<trim
prefix=
"("
prefixOverrides=
"and"
suffix=
")"
>
<foreach
collection=
"criteria.criteria"
item=
"criterion"
>
<choose>
<when
test=
"criterion.noValue"
>
and ${criterion.condition}
</when>
<when
test=
"criterion.singleValue"
>
and ${criterion.condition} #{criterion.value}
</when>
<when
test=
"criterion.betweenValue"
>
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when
test=
"criterion.listValue"
>
and ${criterion.condition}
<foreach
close=
")"
collection=
"criterion.value"
item=
"listItem"
open=
"("
separator=
","
>
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql
id=
"Update_By_Example_Where_Clause"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<where>
<foreach
collection=
"example.oredCriteria"
item=
"criteria"
separator=
"or"
>
<if
test=
"criteria.valid"
>
<trim
prefix=
"("
prefixOverrides=
"and"
suffix=
")"
>
<foreach
collection=
"criteria.criteria"
item=
"criterion"
>
<choose>
<when
test=
"criterion.noValue"
>
and ${criterion.condition}
</when>
<when
test=
"criterion.singleValue"
>
and ${criterion.condition} #{criterion.value}
</when>
<when
test=
"criterion.betweenValue"
>
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when
test=
"criterion.listValue"
>
and ${criterion.condition}
<foreach
close=
")"
collection=
"criterion.value"
item=
"listItem"
open=
"("
separator=
","
>
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql
id=
"Base_Column_List"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
id, bailun_sku, warehouse_code
</sql>
<select
id=
"selectByExample"
parameterType=
"com.bailuntec.domain.example.DcAutoStockUpRangeExample"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
from dc_auto_stock_up_range
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
<if
test=
"rows != null"
>
<if
test=
"offset != null"
>
limit ${offset}, ${rows}
</if>
<if
test=
"offset == null"
>
limit ${rows}
</if>
</if>
</select>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Integer"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
select
<include
refid=
"Base_Column_List"
/>
from dc_auto_stock_up_range
where id = #{id,jdbcType=INTEGER}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Integer"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
delete from dc_auto_stock_up_range
where id = #{id,jdbcType=INTEGER}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"com.bailuntec.domain.example.DcAutoStockUpRangeExample"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
delete from dc_auto_stock_up_range
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"com.bailuntec.domain.entity.DcAutoStockUpRange"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
insert into dc_auto_stock_up_range (id, bailun_sku, warehouse_code
)
values (#{id,jdbcType=INTEGER}, #{bailunSku,jdbcType=VARCHAR}, #{warehouseCode,jdbcType=VARCHAR}
)
</insert>
<insert
id=
"insertSelective"
parameterType=
"com.bailuntec.domain.entity.DcAutoStockUpRange"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
insert into dc_auto_stock_up_range
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"bailunSku != null"
>
bailun_sku,
</if>
<if
test=
"warehouseCode != null"
>
warehouse_code,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=INTEGER},
</if>
<if
test=
"bailunSku != null"
>
#{bailunSku,jdbcType=VARCHAR},
</if>
<if
test=
"warehouseCode != null"
>
#{warehouseCode,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"com.bailuntec.domain.example.DcAutoStockUpRangeExample"
resultType=
"java.lang.Long"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
select count(*) from dc_auto_stock_up_range
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</select>
<update
id=
"updateByExampleSelective"
parameterType=
"map"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update dc_auto_stock_up_range
<set>
<if
test=
"record.id != null"
>
id = #{record.id,jdbcType=INTEGER},
</if>
<if
test=
"record.bailunSku != null"
>
bailun_sku = #{record.bailunSku,jdbcType=VARCHAR},
</if>
<if
test=
"record.warehouseCode != null"
>
warehouse_code = #{record.warehouseCode,jdbcType=VARCHAR},
</if>
</set>
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExample"
parameterType=
"map"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update dc_auto_stock_up_range
set id = #{record.id,jdbcType=INTEGER},
bailun_sku = #{record.bailunSku,jdbcType=VARCHAR},
warehouse_code = #{record.warehouseCode,jdbcType=VARCHAR}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"com.bailuntec.domain.entity.DcAutoStockUpRange"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update dc_auto_stock_up_range
<set>
<if
test=
"bailunSku != null"
>
bailun_sku = #{bailunSku,jdbcType=VARCHAR},
</if>
<if
test=
"warehouseCode != null"
>
warehouse_code = #{warehouseCode,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.bailuntec.domain.entity.DcAutoStockUpRange"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update dc_auto_stock_up_range
set bailun_sku = #{bailunSku,jdbcType=VARCHAR},
warehouse_code = #{warehouseCode,jdbcType=VARCHAR}
where id = #{id,jdbcType=INTEGER}
</update>
<insert
id=
"upsertSelective"
parameterType=
"com.bailuntec.domain.entity.DcAutoStockUpRange"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
@project https://github.com/itfsw/mybatis-generator-plugin
-->
insert into dc_auto_stock_up_range
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"bailunSku != null"
>
bailun_sku,
</if>
<if
test=
"warehouseCode != null"
>
warehouse_code,
</if>
</trim>
values
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=INTEGER},
</if>
<if
test=
"bailunSku != null"
>
#{bailunSku,jdbcType=VARCHAR},
</if>
<if
test=
"warehouseCode != null"
>
#{warehouseCode,jdbcType=VARCHAR},
</if>
</trim>
on duplicate key update
<trim
suffixOverrides=
","
>
<if
test=
"id != null"
>
id = #{id,jdbcType=INTEGER},
</if>
<if
test=
"bailunSku != null"
>
bailun_sku = #{bailunSku,jdbcType=VARCHAR},
</if>
<if
test=
"warehouseCode != null"
>
warehouse_code = #{warehouseCode,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<insert
id=
"upsert"
parameterType=
"com.bailuntec.domain.entity.DcAutoStockUpRange"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
@project https://github.com/itfsw/mybatis-generator-plugin
-->
insert into dc_auto_stock_up_range
(id, bailun_sku, warehouse_code)
values
(#{id,jdbcType=INTEGER}, #{bailunSku,jdbcType=VARCHAR}, #{warehouseCode,jdbcType=VARCHAR}
)
on duplicate key update
id = #{id,jdbcType=INTEGER},
bailun_sku = #{bailunSku,jdbcType=VARCHAR},
warehouse_code = #{warehouseCode,jdbcType=VARCHAR}
</insert>
<select
id=
"selectOneByExample"
parameterType=
"com.bailuntec.domain.example.DcAutoStockUpRangeExample"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
@project https://github.com/itfsw/mybatis-generator-plugin
-->
select
<include
refid=
"Base_Column_List"
/>
from dc_auto_stock_up_range
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
limit 1
</select>
</mapper>
\ No newline at end of file
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