Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
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
YZG
yzg-util
Commits
ac95193f
Commit
ac95193f
authored
Aug 22, 2023
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.3版本修改,增加删除功能
parent
42e854ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
DaoConst.java
yzg-util-db/src/main/java/com/yanzuoguang/dao/DaoConst.java
+4
-0
TableStruct.java
...b/src/main/java/com/yanzuoguang/dao/impl/TableStruct.java
+6
-1
No files found.
yzg-util-db/src/main/java/com/yanzuoguang/dao/DaoConst.java
View file @
ac95193f
...
@@ -174,6 +174,10 @@ public class DaoConst {
...
@@ -174,6 +174,10 @@ public class DaoConst {
* 未删除条件
* 未删除条件
*/
*/
public
static
final
String
CODE_WHERE_EQUALS_NOT_REMOVE
=
"AND a.%s=IFNULL(?,0)"
;
public
static
final
String
CODE_WHERE_EQUALS_NOT_REMOVE
=
"AND a.%s=IFNULL(?,0)"
;
/**
* 未删除条件
*/
public
static
final
String
CODE_WHERE_REMOVE
=
"AND a.%s IN (0,2)"
;
/**
/**
* 版本好字段
* 版本好字段
*/
*/
...
...
yzg-util-db/src/main/java/com/yanzuoguang/dao/impl/TableStruct.java
View file @
ac95193f
...
@@ -2,6 +2,7 @@ package com.yanzuoguang.dao.impl;
...
@@ -2,6 +2,7 @@ package com.yanzuoguang.dao.impl;
import
com.yanzuoguang.dao.TableAnnotation
;
import
com.yanzuoguang.dao.TableAnnotation
;
import
com.yanzuoguang.dao.cond.SqlCondDefault
;
import
com.yanzuoguang.dao.cond.SqlCondDefault
;
import
com.yanzuoguang.dao.cond.SqlCondEquals
;
import
com.yanzuoguang.util.base.MethodField
;
import
com.yanzuoguang.util.base.MethodField
;
import
com.yanzuoguang.util.base.ObjectHelper
;
import
com.yanzuoguang.util.base.ObjectHelper
;
import
com.yanzuoguang.util.exception.RuntimeCodeException
;
import
com.yanzuoguang.util.exception.RuntimeCodeException
;
...
@@ -671,10 +672,14 @@ public class TableStruct {
...
@@ -671,10 +672,14 @@ public class TableStruct {
private
void
addWhereRemove
(
SqlData
sql
)
{
private
void
addWhereRemove
(
SqlData
sql
)
{
TableFieldVo
remove
=
this
.
getRemove
();
TableFieldVo
remove
=
this
.
getRemove
();
if
(
remove
!=
null
)
{
if
(
remove
!=
null
)
{
sql
.
addPara
Const
(
remove
.
inputName
+
OLD_FLAG
,
sql
.
addPara
(
new
SqlCondEquals
(
remove
.
inputName
+
OLD_FLAG
,
0
,
1
,
2
)
,
CODE_WHERE
,
CODE_WHERE
,
String
.
format
(
CODE_WHERE_EQUALS_NOT_REMOVE
,
this
.
getRemove
().
name
)
String
.
format
(
CODE_WHERE_EQUALS_NOT_REMOVE
,
this
.
getRemove
().
name
)
);
);
sql
.
addPara
(
new
SqlCondEquals
(
remove
.
inputName
+
OLD_FLAG
,
3
),
CODE_WHERE
,
String
.
format
(
CODE_WHERE_REMOVE
,
this
.
getRemove
().
name
)
);
}
}
}
}
...
...
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