Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Litemall
Commits
324c8da3
Unverified
Commit
324c8da3
authored
Dec 29, 2019
by
linlinjava
Committed by
GitHub
Dec 29, 2019
Browse files
Merge branch 'master' into dev
parents
693cf5cd
4c46da9b
Changes
399
Show whitespace changes
Inline
Side-by-side
Too many changes to show.
To preserve performance only
20 of 399+
files are displayed.
Plain diff
Email patch
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallAdMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallAdMapper {
* This method corresponds to the database table litemall_ad
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallAd
selectOneByExample
(
LitemallAdExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallAdMapper {
* This method corresponds to the database table litemall_ad
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallAd
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallAdExample
example
,
@Param
(
"selective"
)
LitemallAd
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallAdMapper {
* This method corresponds to the database table litemall_ad
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallAd
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallAdExample
example
,
@Param
(
"selective"
)
LitemallAd
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallAdMapper {
* This method corresponds to the database table litemall_ad
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallAd
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallAd
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallAdMapper {
* This method corresponds to the database table litemall_ad
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallAd
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallAdMapper {
* This method corresponds to the database table litemall_ad
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallAdExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallAdMapper {
* This method corresponds to the database table litemall_ad
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallAddressMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallAddressMapper {
* This method corresponds to the database table litemall_address
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallAddress
selectOneByExample
(
LitemallAddressExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallAddressMapper {
* This method corresponds to the database table litemall_address
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallAddress
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallAddressExample
example
,
@Param
(
"selective"
)
LitemallAddress
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallAddressMapper {
* This method corresponds to the database table litemall_address
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallAddress
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallAddressExample
example
,
@Param
(
"selective"
)
LitemallAddress
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallAddressMapper {
* This method corresponds to the database table litemall_address
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallAddress
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallAddress
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallAddressMapper {
* This method corresponds to the database table litemall_address
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallAddress
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallAddressMapper {
* This method corresponds to the database table litemall_address
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallAddressExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallAddressMapper {
* This method corresponds to the database table litemall_address
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallAdminMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallAdminMapper {
* This method corresponds to the database table litemall_admin
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallAdmin
selectOneByExample
(
LitemallAdminExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallAdminMapper {
* This method corresponds to the database table litemall_admin
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallAdmin
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallAdminExample
example
,
@Param
(
"selective"
)
LitemallAdmin
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallAdminMapper {
* This method corresponds to the database table litemall_admin
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallAdmin
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallAdminExample
example
,
@Param
(
"selective"
)
LitemallAdmin
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallAdminMapper {
* This method corresponds to the database table litemall_admin
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallAdmin
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallAdmin
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallAdminMapper {
* This method corresponds to the database table litemall_admin
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallAdmin
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallAdminMapper {
* This method corresponds to the database table litemall_admin
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallAdminExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallAdminMapper {
* This method corresponds to the database table litemall_admin
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallBrandMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallBrandMapper {
* This method corresponds to the database table litemall_brand
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallBrand
selectOneByExample
(
LitemallBrandExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallBrandMapper {
* This method corresponds to the database table litemall_brand
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallBrand
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallBrandExample
example
,
@Param
(
"selective"
)
LitemallBrand
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallBrandMapper {
* This method corresponds to the database table litemall_brand
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallBrand
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallBrandExample
example
,
@Param
(
"selective"
)
LitemallBrand
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallBrandMapper {
* This method corresponds to the database table litemall_brand
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallBrand
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallBrand
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallBrandMapper {
* This method corresponds to the database table litemall_brand
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallBrand
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallBrandMapper {
* This method corresponds to the database table litemall_brand
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallBrandExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallBrandMapper {
* This method corresponds to the database table litemall_brand
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallCartMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallCartMapper {
* This method corresponds to the database table litemall_cart
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCart
selectOneByExample
(
LitemallCartExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallCartMapper {
* This method corresponds to the database table litemall_cart
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCart
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallCartExample
example
,
@Param
(
"selective"
)
LitemallCart
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallCartMapper {
* This method corresponds to the database table litemall_cart
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallCart
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallCartExample
example
,
@Param
(
"selective"
)
LitemallCart
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallCartMapper {
* This method corresponds to the database table litemall_cart
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCart
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallCart
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallCartMapper {
* This method corresponds to the database table litemall_cart
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCart
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallCartMapper {
* This method corresponds to the database table litemall_cart
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallCartExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallCartMapper {
* This method corresponds to the database table litemall_cart
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallCategoryMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallCategoryMapper {
* This method corresponds to the database table litemall_category
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCategory
selectOneByExample
(
LitemallCategoryExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallCategoryMapper {
* This method corresponds to the database table litemall_category
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCategory
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallCategoryExample
example
,
@Param
(
"selective"
)
LitemallCategory
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallCategoryMapper {
* This method corresponds to the database table litemall_category
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallCategory
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallCategoryExample
example
,
@Param
(
"selective"
)
LitemallCategory
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallCategoryMapper {
* This method corresponds to the database table litemall_category
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCategory
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallCategory
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallCategoryMapper {
* This method corresponds to the database table litemall_category
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCategory
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallCategoryMapper {
* This method corresponds to the database table litemall_category
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallCategoryExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallCategoryMapper {
* This method corresponds to the database table litemall_category
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallCollectMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallCollectMapper {
* This method corresponds to the database table litemall_collect
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCollect
selectOneByExample
(
LitemallCollectExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallCollectMapper {
* This method corresponds to the database table litemall_collect
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCollect
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallCollectExample
example
,
@Param
(
"selective"
)
LitemallCollect
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallCollectMapper {
* This method corresponds to the database table litemall_collect
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallCollect
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallCollectExample
example
,
@Param
(
"selective"
)
LitemallCollect
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallCollectMapper {
* This method corresponds to the database table litemall_collect
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCollect
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallCollect
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallCollectMapper {
* This method corresponds to the database table litemall_collect
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCollect
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallCollectMapper {
* This method corresponds to the database table litemall_collect
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallCollectExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallCollectMapper {
* This method corresponds to the database table litemall_collect
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallCommentMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallCommentMapper {
* This method corresponds to the database table litemall_comment
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallComment
selectOneByExample
(
LitemallCommentExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallCommentMapper {
* This method corresponds to the database table litemall_comment
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallComment
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallCommentExample
example
,
@Param
(
"selective"
)
LitemallComment
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallCommentMapper {
* This method corresponds to the database table litemall_comment
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallComment
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallCommentExample
example
,
@Param
(
"selective"
)
LitemallComment
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallCommentMapper {
* This method corresponds to the database table litemall_comment
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallComment
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallComment
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallCommentMapper {
* This method corresponds to the database table litemall_comment
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallComment
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallCommentMapper {
* This method corresponds to the database table litemall_comment
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallCommentExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallCommentMapper {
* This method corresponds to the database table litemall_comment
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallCouponMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallCouponMapper {
* This method corresponds to the database table litemall_coupon
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCoupon
selectOneByExample
(
LitemallCouponExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallCouponMapper {
* This method corresponds to the database table litemall_coupon
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCoupon
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallCouponExample
example
,
@Param
(
"selective"
)
LitemallCoupon
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallCouponMapper {
* This method corresponds to the database table litemall_coupon
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallCoupon
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallCouponExample
example
,
@Param
(
"selective"
)
LitemallCoupon
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallCouponMapper {
* This method corresponds to the database table litemall_coupon
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCoupon
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallCoupon
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallCouponMapper {
* This method corresponds to the database table litemall_coupon
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCoupon
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallCouponMapper {
* This method corresponds to the database table litemall_coupon
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallCouponExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallCouponMapper {
* This method corresponds to the database table litemall_coupon
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallCouponUserMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallCouponUserMapper {
* This method corresponds to the database table litemall_coupon_user
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCouponUser
selectOneByExample
(
LitemallCouponUserExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallCouponUserMapper {
* This method corresponds to the database table litemall_coupon_user
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCouponUser
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallCouponUserExample
example
,
@Param
(
"selective"
)
LitemallCouponUser
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallCouponUserMapper {
* This method corresponds to the database table litemall_coupon_user
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallCouponUser
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallCouponUserExample
example
,
@Param
(
"selective"
)
LitemallCouponUser
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallCouponUserMapper {
* This method corresponds to the database table litemall_coupon_user
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCouponUser
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallCouponUser
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallCouponUserMapper {
* This method corresponds to the database table litemall_coupon_user
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallCouponUser
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallCouponUserMapper {
* This method corresponds to the database table litemall_coupon_user
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallCouponUserExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallCouponUserMapper {
* This method corresponds to the database table litemall_coupon_user
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallFeedbackMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallFeedbackMapper {
* This method corresponds to the database table litemall_feedback
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallFeedback
selectOneByExample
(
LitemallFeedbackExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallFeedbackMapper {
* This method corresponds to the database table litemall_feedback
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallFeedback
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallFeedbackExample
example
,
@Param
(
"selective"
)
LitemallFeedback
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallFeedbackMapper {
* This method corresponds to the database table litemall_feedback
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallFeedback
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallFeedbackExample
example
,
@Param
(
"selective"
)
LitemallFeedback
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallFeedbackMapper {
* This method corresponds to the database table litemall_feedback
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallFeedback
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallFeedback
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallFeedbackMapper {
* This method corresponds to the database table litemall_feedback
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallFeedback
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallFeedbackMapper {
* This method corresponds to the database table litemall_feedback
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallFeedbackExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallFeedbackMapper {
* This method corresponds to the database table litemall_feedback
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallFootprintMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallFootprintMapper {
* This method corresponds to the database table litemall_footprint
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallFootprint
selectOneByExample
(
LitemallFootprintExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallFootprintMapper {
* This method corresponds to the database table litemall_footprint
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallFootprint
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallFootprintExample
example
,
@Param
(
"selective"
)
LitemallFootprint
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallFootprintMapper {
* This method corresponds to the database table litemall_footprint
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallFootprint
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallFootprintExample
example
,
@Param
(
"selective"
)
LitemallFootprint
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallFootprintMapper {
* This method corresponds to the database table litemall_footprint
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallFootprint
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallFootprint
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallFootprintMapper {
* This method corresponds to the database table litemall_footprint
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallFootprint
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallFootprintMapper {
* This method corresponds to the database table litemall_footprint
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallFootprintExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallFootprintMapper {
* This method corresponds to the database table litemall_footprint
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallGoodsAttributeMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallGoodsAttributeMapper {
* This method corresponds to the database table litemall_goods_attribute
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoodsAttribute
selectOneByExample
(
LitemallGoodsAttributeExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallGoodsAttributeMapper {
* This method corresponds to the database table litemall_goods_attribute
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoodsAttribute
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallGoodsAttributeExample
example
,
@Param
(
"selective"
)
LitemallGoodsAttribute
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallGoodsAttributeMapper {
* This method corresponds to the database table litemall_goods_attribute
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallGoodsAttribute
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallGoodsAttributeExample
example
,
@Param
(
"selective"
)
LitemallGoodsAttribute
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallGoodsAttributeMapper {
* This method corresponds to the database table litemall_goods_attribute
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoodsAttribute
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallGoodsAttribute
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallGoodsAttributeMapper {
* This method corresponds to the database table litemall_goods_attribute
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoodsAttribute
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallGoodsAttributeMapper {
* This method corresponds to the database table litemall_goods_attribute
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallGoodsAttributeExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallGoodsAttributeMapper {
* This method corresponds to the database table litemall_goods_attribute
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallGoodsMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallGoodsMapper {
* This method corresponds to the database table litemall_goods
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoods
selectOneByExample
(
LitemallGoodsExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallGoodsMapper {
* This method corresponds to the database table litemall_goods
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoods
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallGoodsExample
example
,
@Param
(
"selective"
)
LitemallGoods
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallGoodsMapper {
* This method corresponds to the database table litemall_goods
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoods
selectOneByExampleWithBLOBs
(
LitemallGoodsExample
example
);
...
...
@@ -78,7 +75,6 @@ public interface LitemallGoodsMapper {
* This method corresponds to the database table litemall_goods
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallGoods
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallGoodsExample
example
,
@Param
(
"selective"
)
LitemallGoods
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallGoodsMapper {
* This method corresponds to the database table litemall_goods
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoods
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallGoods
.
Column
...
selective
);
...
...
@@ -120,7 +115,6 @@ public interface LitemallGoodsMapper {
* This method corresponds to the database table litemall_goods
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoods
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -177,7 +171,6 @@ public interface LitemallGoodsMapper {
* This method corresponds to the database table litemall_goods
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallGoodsExample
example
);
...
...
@@ -186,7 +179,6 @@ public interface LitemallGoodsMapper {
* This method corresponds to the database table litemall_goods
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallGoodsProductMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallGoodsProductMapper {
* This method corresponds to the database table litemall_goods_product
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoodsProduct
selectOneByExample
(
LitemallGoodsProductExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallGoodsProductMapper {
* This method corresponds to the database table litemall_goods_product
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoodsProduct
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallGoodsProductExample
example
,
@Param
(
"selective"
)
LitemallGoodsProduct
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallGoodsProductMapper {
* This method corresponds to the database table litemall_goods_product
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallGoodsProduct
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallGoodsProductExample
example
,
@Param
(
"selective"
)
LitemallGoodsProduct
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallGoodsProductMapper {
* This method corresponds to the database table litemall_goods_product
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoodsProduct
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallGoodsProduct
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallGoodsProductMapper {
* This method corresponds to the database table litemall_goods_product
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoodsProduct
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallGoodsProductMapper {
* This method corresponds to the database table litemall_goods_product
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallGoodsProductExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallGoodsProductMapper {
* This method corresponds to the database table litemall_goods_product
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallGoodsSpecificationMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallGoodsSpecificationMapper {
* This method corresponds to the database table litemall_goods_specification
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoodsSpecification
selectOneByExample
(
LitemallGoodsSpecificationExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallGoodsSpecificationMapper {
* This method corresponds to the database table litemall_goods_specification
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoodsSpecification
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallGoodsSpecificationExample
example
,
@Param
(
"selective"
)
LitemallGoodsSpecification
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallGoodsSpecificationMapper {
* This method corresponds to the database table litemall_goods_specification
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallGoodsSpecification
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallGoodsSpecificationExample
example
,
@Param
(
"selective"
)
LitemallGoodsSpecification
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallGoodsSpecificationMapper {
* This method corresponds to the database table litemall_goods_specification
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoodsSpecification
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallGoodsSpecification
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallGoodsSpecificationMapper {
* This method corresponds to the database table litemall_goods_specification
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGoodsSpecification
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallGoodsSpecificationMapper {
* This method corresponds to the database table litemall_goods_specification
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallGoodsSpecificationExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallGoodsSpecificationMapper {
* This method corresponds to the database table litemall_goods_specification
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallGrouponMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallGrouponMapper {
* This method corresponds to the database table litemall_groupon
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGroupon
selectOneByExample
(
LitemallGrouponExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallGrouponMapper {
* This method corresponds to the database table litemall_groupon
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGroupon
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallGrouponExample
example
,
@Param
(
"selective"
)
LitemallGroupon
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallGrouponMapper {
* This method corresponds to the database table litemall_groupon
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallGroupon
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallGrouponExample
example
,
@Param
(
"selective"
)
LitemallGroupon
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallGrouponMapper {
* This method corresponds to the database table litemall_groupon
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGroupon
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallGroupon
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallGrouponMapper {
* This method corresponds to the database table litemall_groupon
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGroupon
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallGrouponMapper {
* This method corresponds to the database table litemall_groupon
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallGrouponExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallGrouponMapper {
* This method corresponds to the database table litemall_groupon
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallGrouponRulesMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallGrouponRulesMapper {
* This method corresponds to the database table litemall_groupon_rules
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGrouponRules
selectOneByExample
(
LitemallGrouponRulesExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallGrouponRulesMapper {
* This method corresponds to the database table litemall_groupon_rules
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGrouponRules
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallGrouponRulesExample
example
,
@Param
(
"selective"
)
LitemallGrouponRules
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallGrouponRulesMapper {
* This method corresponds to the database table litemall_groupon_rules
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallGrouponRules
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallGrouponRulesExample
example
,
@Param
(
"selective"
)
LitemallGrouponRules
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallGrouponRulesMapper {
* This method corresponds to the database table litemall_groupon_rules
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGrouponRules
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallGrouponRules
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallGrouponRulesMapper {
* This method corresponds to the database table litemall_groupon_rules
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallGrouponRules
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallGrouponRulesMapper {
* This method corresponds to the database table litemall_groupon_rules
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallGrouponRulesExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallGrouponRulesMapper {
* This method corresponds to the database table litemall_groupon_rules
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallIssueMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallIssueMapper {
* This method corresponds to the database table litemall_issue
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallIssue
selectOneByExample
(
LitemallIssueExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallIssueMapper {
* This method corresponds to the database table litemall_issue
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallIssue
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallIssueExample
example
,
@Param
(
"selective"
)
LitemallIssue
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallIssueMapper {
* This method corresponds to the database table litemall_issue
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallIssue
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallIssueExample
example
,
@Param
(
"selective"
)
LitemallIssue
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallIssueMapper {
* This method corresponds to the database table litemall_issue
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallIssue
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallIssue
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallIssueMapper {
* This method corresponds to the database table litemall_issue
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallIssue
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallIssueMapper {
* This method corresponds to the database table litemall_issue
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallIssueExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallIssueMapper {
* This method corresponds to the database table litemall_issue
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
litemall-db/src/main/java/org/linlinjava/litemall/db/dao/LitemallKeywordMapper.java
View file @
324c8da3
...
...
@@ -51,7 +51,6 @@ public interface LitemallKeywordMapper {
* This method corresponds to the database table litemall_keyword
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallKeyword
selectOneByExample
(
LitemallKeywordExample
example
);
...
...
@@ -60,7 +59,6 @@ public interface LitemallKeywordMapper {
* This method corresponds to the database table litemall_keyword
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallKeyword
selectOneByExampleSelective
(
@Param
(
"example"
)
LitemallKeywordExample
example
,
@Param
(
"selective"
)
LitemallKeyword
.
Column
...
selective
);
...
...
@@ -69,7 +67,6 @@ public interface LitemallKeywordMapper {
* This method corresponds to the database table litemall_keyword
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
List
<
LitemallKeyword
>
selectByExampleSelective
(
@Param
(
"example"
)
LitemallKeywordExample
example
,
@Param
(
"selective"
)
LitemallKeyword
.
Column
...
selective
);
...
...
@@ -86,7 +83,6 @@ public interface LitemallKeywordMapper {
* This method corresponds to the database table litemall_keyword
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallKeyword
selectByPrimaryKeySelective
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"selective"
)
LitemallKeyword
.
Column
...
selective
);
...
...
@@ -103,7 +99,6 @@ public interface LitemallKeywordMapper {
* This method corresponds to the database table litemall_keyword
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
LitemallKeyword
selectByPrimaryKeyWithLogicalDelete
(
@Param
(
"id"
)
Integer
id
,
@Param
(
"andLogicalDeleted"
)
boolean
andLogicalDeleted
);
...
...
@@ -144,7 +139,6 @@ public interface LitemallKeywordMapper {
* This method corresponds to the database table litemall_keyword
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByExample
(
@Param
(
"example"
)
LitemallKeywordExample
example
);
...
...
@@ -153,7 +147,6 @@ public interface LitemallKeywordMapper {
* This method corresponds to the database table litemall_keyword
*
* @mbg.generated
* @project https://github.com/itfsw/mybatis-generator-plugin
*/
int
logicalDeleteByPrimaryKey
(
Integer
id
);
}
\ No newline at end of file
Prev
1
…
10
11
12
13
14
15
16
17
18
…
20
Next
Write
Preview
Supports
Markdown
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