Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
T
traffic-front
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wangxiaoming
traffic-front
Commits
91a4b126
Commit
91a4b126
authored
Apr 24, 2019
by
eddie.woo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mybatis generator
parent
1957abfc
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
4809 additions
and
7 deletions
+4809
-7
WfRecordDetailMapper.java
.../main/java/pwc/taxtech/atms/dao/WfRecordDetailMapper.java
+34
-0
WfRecordMapper.java
...ao/src/main/java/pwc/taxtech/atms/dao/WfRecordMapper.java
+34
-0
WfRecord.java
atms-dao/src/main/java/pwc/taxtech/atms/entity/WfRecord.java
+221
-0
WfRecordDetail.java
...src/main/java/pwc/taxtech/atms/entity/WfRecordDetail.java
+161
-0
WfRecordDetailExample.java
...n/java/pwc/taxtech/atms/entity/WfRecordDetailExample.java
+797
-0
WfRecordExample.java
...rc/main/java/pwc/taxtech/atms/entity/WfRecordExample.java
+977
-0
WfRecordDetailMapper.xml
...n/resources/pwc/taxtech/atms/dao/WfRecordDetailMapper.xml
+821
-0
WfRecordMapper.xml
...rc/main/resources/pwc/taxtech/atms/dao/WfRecordMapper.xml
+962
-0
MyBatisGeneratorTest.java
.../test/java/pwc/taxtech/atms/gen/MyBatisGeneratorTest.java
+1
-1
SimpleCommentGenerator.java
...est/java/pwc/taxtech/atms/gen/SimpleCommentGenerator.java
+6
-6
generator.properties
atms-dao/src/test/resources/generator.properties
+4
-0
generatorConfig.xml
atms-dao/src/test/resources/generatorConfig.xml
+791
-0
No files found.
atms-dao/src/main/java/pwc/taxtech/atms/dao/WfRecordDetailMapper.java
0 → 100644
View file @
91a4b126
package
pwc
.
taxtech
.
atms
.
dao
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
pwc.taxtech.atms.MyMapper
;
import
pwc.taxtech.atms.entity.WfRecordDetail
;
import
pwc.taxtech.atms.entity.WfRecordDetailExample
;
@Mapper
public
interface
WfRecordDetailMapper
extends
MyMapper
{
long
countByExample
(
WfRecordDetailExample
example
);
int
deleteByExample
(
WfRecordDetailExample
example
);
int
deleteByPrimaryKey
(
Long
id
);
int
insert
(
WfRecordDetail
record
);
int
insertSelective
(
WfRecordDetail
record
);
List
<
WfRecordDetail
>
selectByExample
(
WfRecordDetailExample
example
);
WfRecordDetail
selectByPrimaryKey
(
Long
id
);
int
updateByExampleSelective
(
@Param
(
"record"
)
WfRecordDetail
record
,
@Param
(
"example"
)
WfRecordDetailExample
example
);
int
updateByExample
(
@Param
(
"record"
)
WfRecordDetail
record
,
@Param
(
"example"
)
WfRecordDetailExample
example
);
int
updateByPrimaryKeySelective
(
WfRecordDetail
record
);
int
updateByPrimaryKey
(
WfRecordDetail
record
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/dao/WfRecordMapper.java
0 → 100644
View file @
91a4b126
package
pwc
.
taxtech
.
atms
.
dao
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
pwc.taxtech.atms.MyMapper
;
import
pwc.taxtech.atms.entity.WfRecord
;
import
pwc.taxtech.atms.entity.WfRecordExample
;
@Mapper
public
interface
WfRecordMapper
extends
MyMapper
{
long
countByExample
(
WfRecordExample
example
);
int
deleteByExample
(
WfRecordExample
example
);
int
deleteByPrimaryKey
(
Long
id
);
int
insert
(
WfRecord
record
);
int
insertSelective
(
WfRecord
record
);
List
<
WfRecord
>
selectByExample
(
WfRecordExample
example
);
WfRecord
selectByPrimaryKey
(
Long
id
);
int
updateByExampleSelective
(
@Param
(
"record"
)
WfRecord
record
,
@Param
(
"example"
)
WfRecordExample
example
);
int
updateByExample
(
@Param
(
"record"
)
WfRecord
record
,
@Param
(
"example"
)
WfRecordExample
example
);
int
updateByPrimaryKeySelective
(
WfRecord
record
);
int
updateByPrimaryKey
(
WfRecord
record
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/entity/WfRecord.java
0 → 100644
View file @
91a4b126
package
pwc
.
taxtech
.
atms
.
entity
;
import
java.io.Serializable
;
public
class
WfRecord
extends
BaseEntity
implements
Serializable
{
/**
*
*/
private
Long
id
;
/**
* 机构ID
*/
private
String
orgId
;
/**
* 项目ID
*/
private
Long
projectId
;
/**
* 年
*/
private
Integer
year
;
/**
* 期间
*/
private
Integer
period
;
/**
* 类型 0:通用 1:VAT 2:CIT 3:税金计算表
*/
private
Integer
type
;
/**
* ACT实例ID
*/
private
String
actInstId
;
/**
* 状态 0:审批中 1:通过 2:驳回
*/
private
Integer
status
;
/**
* 流程发起人ID
*/
private
String
uid
;
/**
* 备注
*/
private
String
comment
;
/**
* wf_record
*/
private
static
final
long
serialVersionUID
=
1L
;
/**
* @return id
*/
public
Long
getId
()
{
return
id
;
}
/**
* @param id
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* @return org_id 机构ID
*/
public
String
getOrgId
()
{
return
orgId
;
}
/**
* @param orgId 机构ID
*/
public
void
setOrgId
(
String
orgId
)
{
this
.
orgId
=
orgId
==
null
?
null
:
orgId
.
trim
();
}
/**
* @return project_id 项目ID
*/
public
Long
getProjectId
()
{
return
projectId
;
}
/**
* @param projectId 项目ID
*/
public
void
setProjectId
(
Long
projectId
)
{
this
.
projectId
=
projectId
;
}
/**
* @return year 年
*/
public
Integer
getYear
()
{
return
year
;
}
/**
* @param year 年
*/
public
void
setYear
(
Integer
year
)
{
this
.
year
=
year
;
}
/**
* @return period 期间
*/
public
Integer
getPeriod
()
{
return
period
;
}
/**
* @param period 期间
*/
public
void
setPeriod
(
Integer
period
)
{
this
.
period
=
period
;
}
/**
* @return type 类型 0:通用 1:VAT 2:CIT 3:税金计算表
*/
public
Integer
getType
()
{
return
type
;
}
/**
* @param type 类型 0:通用 1:VAT 2:CIT 3:税金计算表
*/
public
void
setType
(
Integer
type
)
{
this
.
type
=
type
;
}
/**
* @return act_inst_id ACT实例ID
*/
public
String
getActInstId
()
{
return
actInstId
;
}
/**
* @param actInstId ACT实例ID
*/
public
void
setActInstId
(
String
actInstId
)
{
this
.
actInstId
=
actInstId
==
null
?
null
:
actInstId
.
trim
();
}
/**
* @return status 状态 0:审批中 1:通过 2:驳回
*/
public
Integer
getStatus
()
{
return
status
;
}
/**
* @param status 状态 0:审批中 1:通过 2:驳回
*/
public
void
setStatus
(
Integer
status
)
{
this
.
status
=
status
;
}
/**
* @return uid 流程发起人ID
*/
public
String
getUid
()
{
return
uid
;
}
/**
* @param uid 流程发起人ID
*/
public
void
setUid
(
String
uid
)
{
this
.
uid
=
uid
==
null
?
null
:
uid
.
trim
();
}
/**
* @return comment 备注
*/
public
String
getComment
()
{
return
comment
;
}
/**
* @param comment 备注
*/
public
void
setComment
(
String
comment
)
{
this
.
comment
=
comment
==
null
?
null
:
comment
.
trim
();
}
@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
(
", orgId="
).
append
(
orgId
);
sb
.
append
(
", projectId="
).
append
(
projectId
);
sb
.
append
(
", year="
).
append
(
year
);
sb
.
append
(
", period="
).
append
(
period
);
sb
.
append
(
", type="
).
append
(
type
);
sb
.
append
(
", actInstId="
).
append
(
actInstId
);
sb
.
append
(
", status="
).
append
(
status
);
sb
.
append
(
", uid="
).
append
(
uid
);
sb
.
append
(
", comment="
).
append
(
comment
);
sb
.
append
(
"]"
);
return
sb
.
toString
();
}
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/entity/WfRecordDetail.java
0 → 100644
View file @
91a4b126
package
pwc
.
taxtech
.
atms
.
entity
;
import
java.io.Serializable
;
public
class
WfRecordDetail
extends
BaseEntity
implements
Serializable
{
/**
*
*/
private
Long
id
;
/**
* 工作流主表ID
*/
private
Long
recordId
;
/**
* ACT实例ID
*/
private
String
actInstId
;
/**
* ACT任务ID
*/
private
String
actTaskId
;
/**
* UID
*/
private
String
uid
;
/**
* 状态 0:审批中 1:通过 2:驳回
*/
private
Integer
status
;
/**
* 备注
*/
private
String
comment
;
/**
* wf_record_detail
*/
private
static
final
long
serialVersionUID
=
1L
;
/**
* @return id
*/
public
Long
getId
()
{
return
id
;
}
/**
* @param id
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* @return record_id 工作流主表ID
*/
public
Long
getRecordId
()
{
return
recordId
;
}
/**
* @param recordId 工作流主表ID
*/
public
void
setRecordId
(
Long
recordId
)
{
this
.
recordId
=
recordId
;
}
/**
* @return act_inst_id ACT实例ID
*/
public
String
getActInstId
()
{
return
actInstId
;
}
/**
* @param actInstId ACT实例ID
*/
public
void
setActInstId
(
String
actInstId
)
{
this
.
actInstId
=
actInstId
==
null
?
null
:
actInstId
.
trim
();
}
/**
* @return act_task_id ACT任务ID
*/
public
String
getActTaskId
()
{
return
actTaskId
;
}
/**
* @param actTaskId ACT任务ID
*/
public
void
setActTaskId
(
String
actTaskId
)
{
this
.
actTaskId
=
actTaskId
==
null
?
null
:
actTaskId
.
trim
();
}
/**
* @return uid UID
*/
public
String
getUid
()
{
return
uid
;
}
/**
* @param uid UID
*/
public
void
setUid
(
String
uid
)
{
this
.
uid
=
uid
==
null
?
null
:
uid
.
trim
();
}
/**
* @return status 状态 0:审批中 1:通过 2:驳回
*/
public
Integer
getStatus
()
{
return
status
;
}
/**
* @param status 状态 0:审批中 1:通过 2:驳回
*/
public
void
setStatus
(
Integer
status
)
{
this
.
status
=
status
;
}
/**
* @return comment 备注
*/
public
String
getComment
()
{
return
comment
;
}
/**
* @param comment 备注
*/
public
void
setComment
(
String
comment
)
{
this
.
comment
=
comment
==
null
?
null
:
comment
.
trim
();
}
@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
(
", recordId="
).
append
(
recordId
);
sb
.
append
(
", actInstId="
).
append
(
actInstId
);
sb
.
append
(
", actTaskId="
).
append
(
actTaskId
);
sb
.
append
(
", uid="
).
append
(
uid
);
sb
.
append
(
", status="
).
append
(
status
);
sb
.
append
(
", comment="
).
append
(
comment
);
sb
.
append
(
"]"
);
return
sb
.
toString
();
}
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/entity/WfRecordDetailExample.java
0 → 100644
View file @
91a4b126
package
pwc
.
taxtech
.
atms
.
entity
;
import
java.util.ArrayList
;
import
java.util.Date
;
import
java.util.List
;
public
class
WfRecordDetailExample
{
/**
* wf_record_detail
*/
protected
String
orderByClause
;
/**
* wf_record_detail
*/
protected
boolean
distinct
;
/**
* wf_record_detail
*/
protected
List
<
Criteria
>
oredCriteria
;
public
WfRecordDetailExample
()
{
oredCriteria
=
new
ArrayList
<
Criteria
>();
}
public
void
setOrderByClause
(
String
orderByClause
)
{
this
.
orderByClause
=
orderByClause
;
}
public
String
getOrderByClause
()
{
return
orderByClause
;
}
public
void
setDistinct
(
boolean
distinct
)
{
this
.
distinct
=
distinct
;
}
public
boolean
isDistinct
()
{
return
distinct
;
}
public
List
<
Criteria
>
getOredCriteria
()
{
return
oredCriteria
;
}
public
void
or
(
Criteria
criteria
)
{
oredCriteria
.
add
(
criteria
);
}
public
Criteria
or
()
{
Criteria
criteria
=
createCriteriaInternal
();
oredCriteria
.
add
(
criteria
);
return
criteria
;
}
public
Criteria
createCriteria
()
{
Criteria
criteria
=
createCriteriaInternal
();
if
(
oredCriteria
.
size
()
==
0
)
{
oredCriteria
.
add
(
criteria
);
}
return
criteria
;
}
protected
Criteria
createCriteriaInternal
()
{
Criteria
criteria
=
new
Criteria
();
return
criteria
;
}
public
void
clear
()
{
oredCriteria
.
clear
();
orderByClause
=
null
;
distinct
=
false
;
}
/**
* wf_record_detail null
*/
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
(
Long
value
)
{
addCriterion
(
"id ="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotEqualTo
(
Long
value
)
{
addCriterion
(
"id <>"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdGreaterThan
(
Long
value
)
{
addCriterion
(
"id >"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdGreaterThanOrEqualTo
(
Long
value
)
{
addCriterion
(
"id >="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdLessThan
(
Long
value
)
{
addCriterion
(
"id <"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdLessThanOrEqualTo
(
Long
value
)
{
addCriterion
(
"id <="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdIn
(
List
<
Long
>
values
)
{
addCriterion
(
"id in"
,
values
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotIn
(
List
<
Long
>
values
)
{
addCriterion
(
"id not in"
,
values
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdBetween
(
Long
value1
,
Long
value2
)
{
addCriterion
(
"id between"
,
value1
,
value2
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotBetween
(
Long
value1
,
Long
value2
)
{
addCriterion
(
"id not between"
,
value1
,
value2
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andRecordIdIsNull
()
{
addCriterion
(
"record_id is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andRecordIdIsNotNull
()
{
addCriterion
(
"record_id is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andRecordIdEqualTo
(
Long
value
)
{
addCriterion
(
"record_id ="
,
value
,
"recordId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andRecordIdNotEqualTo
(
Long
value
)
{
addCriterion
(
"record_id <>"
,
value
,
"recordId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andRecordIdGreaterThan
(
Long
value
)
{
addCriterion
(
"record_id >"
,
value
,
"recordId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andRecordIdGreaterThanOrEqualTo
(
Long
value
)
{
addCriterion
(
"record_id >="
,
value
,
"recordId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andRecordIdLessThan
(
Long
value
)
{
addCriterion
(
"record_id <"
,
value
,
"recordId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andRecordIdLessThanOrEqualTo
(
Long
value
)
{
addCriterion
(
"record_id <="
,
value
,
"recordId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andRecordIdIn
(
List
<
Long
>
values
)
{
addCriterion
(
"record_id in"
,
values
,
"recordId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andRecordIdNotIn
(
List
<
Long
>
values
)
{
addCriterion
(
"record_id not in"
,
values
,
"recordId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andRecordIdBetween
(
Long
value1
,
Long
value2
)
{
addCriterion
(
"record_id between"
,
value1
,
value2
,
"recordId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andRecordIdNotBetween
(
Long
value1
,
Long
value2
)
{
addCriterion
(
"record_id not between"
,
value1
,
value2
,
"recordId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdIsNull
()
{
addCriterion
(
"act_inst_id is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdIsNotNull
()
{
addCriterion
(
"act_inst_id is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdEqualTo
(
String
value
)
{
addCriterion
(
"act_inst_id ="
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdNotEqualTo
(
String
value
)
{
addCriterion
(
"act_inst_id <>"
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdGreaterThan
(
String
value
)
{
addCriterion
(
"act_inst_id >"
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"act_inst_id >="
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdLessThan
(
String
value
)
{
addCriterion
(
"act_inst_id <"
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"act_inst_id <="
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdLike
(
String
value
)
{
addCriterion
(
"act_inst_id like"
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdNotLike
(
String
value
)
{
addCriterion
(
"act_inst_id not like"
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdIn
(
List
<
String
>
values
)
{
addCriterion
(
"act_inst_id in"
,
values
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"act_inst_id not in"
,
values
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"act_inst_id between"
,
value1
,
value2
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"act_inst_id not between"
,
value1
,
value2
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActTaskIdIsNull
()
{
addCriterion
(
"act_task_id is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActTaskIdIsNotNull
()
{
addCriterion
(
"act_task_id is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActTaskIdEqualTo
(
String
value
)
{
addCriterion
(
"act_task_id ="
,
value
,
"actTaskId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActTaskIdNotEqualTo
(
String
value
)
{
addCriterion
(
"act_task_id <>"
,
value
,
"actTaskId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActTaskIdGreaterThan
(
String
value
)
{
addCriterion
(
"act_task_id >"
,
value
,
"actTaskId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActTaskIdGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"act_task_id >="
,
value
,
"actTaskId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActTaskIdLessThan
(
String
value
)
{
addCriterion
(
"act_task_id <"
,
value
,
"actTaskId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActTaskIdLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"act_task_id <="
,
value
,
"actTaskId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActTaskIdLike
(
String
value
)
{
addCriterion
(
"act_task_id like"
,
value
,
"actTaskId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActTaskIdNotLike
(
String
value
)
{
addCriterion
(
"act_task_id not like"
,
value
,
"actTaskId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActTaskIdIn
(
List
<
String
>
values
)
{
addCriterion
(
"act_task_id in"
,
values
,
"actTaskId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActTaskIdNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"act_task_id not in"
,
values
,
"actTaskId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActTaskIdBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"act_task_id between"
,
value1
,
value2
,
"actTaskId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActTaskIdNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"act_task_id not between"
,
value1
,
value2
,
"actTaskId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidIsNull
()
{
addCriterion
(
"`uid` is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidIsNotNull
()
{
addCriterion
(
"`uid` is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidEqualTo
(
String
value
)
{
addCriterion
(
"`uid` ="
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidNotEqualTo
(
String
value
)
{
addCriterion
(
"`uid` <>"
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidGreaterThan
(
String
value
)
{
addCriterion
(
"`uid` >"
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"`uid` >="
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidLessThan
(
String
value
)
{
addCriterion
(
"`uid` <"
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"`uid` <="
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidLike
(
String
value
)
{
addCriterion
(
"`uid` like"
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidNotLike
(
String
value
)
{
addCriterion
(
"`uid` not like"
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidIn
(
List
<
String
>
values
)
{
addCriterion
(
"`uid` in"
,
values
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"`uid` not in"
,
values
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"`uid` between"
,
value1
,
value2
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"`uid` not between"
,
value1
,
value2
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusIsNull
()
{
addCriterion
(
"`status` is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusIsNotNull
()
{
addCriterion
(
"`status` is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusEqualTo
(
Integer
value
)
{
addCriterion
(
"`status` ="
,
value
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusNotEqualTo
(
Integer
value
)
{
addCriterion
(
"`status` <>"
,
value
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusGreaterThan
(
Integer
value
)
{
addCriterion
(
"`status` >"
,
value
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"`status` >="
,
value
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusLessThan
(
Integer
value
)
{
addCriterion
(
"`status` <"
,
value
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"`status` <="
,
value
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"`status` in"
,
values
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"`status` not in"
,
values
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"`status` between"
,
value1
,
value2
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"`status` not between"
,
value1
,
value2
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentIsNull
()
{
addCriterion
(
"`comment` is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentIsNotNull
()
{
addCriterion
(
"`comment` is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentEqualTo
(
String
value
)
{
addCriterion
(
"`comment` ="
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentNotEqualTo
(
String
value
)
{
addCriterion
(
"`comment` <>"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentGreaterThan
(
String
value
)
{
addCriterion
(
"`comment` >"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"`comment` >="
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentLessThan
(
String
value
)
{
addCriterion
(
"`comment` <"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"`comment` <="
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentLike
(
String
value
)
{
addCriterion
(
"`comment` like"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentNotLike
(
String
value
)
{
addCriterion
(
"`comment` not like"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentIn
(
List
<
String
>
values
)
{
addCriterion
(
"`comment` in"
,
values
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"`comment` not in"
,
values
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"`comment` between"
,
value1
,
value2
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"`comment` not between"
,
value1
,
value2
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIsNull
()
{
addCriterion
(
"create_time is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIsNotNull
()
{
addCriterion
(
"create_time is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeEqualTo
(
Date
value
)
{
addCriterion
(
"create_time ="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotEqualTo
(
Date
value
)
{
addCriterion
(
"create_time <>"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeGreaterThan
(
Date
value
)
{
addCriterion
(
"create_time >"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeGreaterThanOrEqualTo
(
Date
value
)
{
addCriterion
(
"create_time >="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeLessThan
(
Date
value
)
{
addCriterion
(
"create_time <"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeLessThanOrEqualTo
(
Date
value
)
{
addCriterion
(
"create_time <="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIn
(
List
<
Date
>
values
)
{
addCriterion
(
"create_time in"
,
values
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotIn
(
List
<
Date
>
values
)
{
addCriterion
(
"create_time not in"
,
values
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeBetween
(
Date
value1
,
Date
value2
)
{
addCriterion
(
"create_time between"
,
value1
,
value2
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotBetween
(
Date
value1
,
Date
value2
)
{
addCriterion
(
"create_time not between"
,
value1
,
value2
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeIsNull
()
{
addCriterion
(
"update_time is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeIsNotNull
()
{
addCriterion
(
"update_time is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeEqualTo
(
Date
value
)
{
addCriterion
(
"update_time ="
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeNotEqualTo
(
Date
value
)
{
addCriterion
(
"update_time <>"
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeGreaterThan
(
Date
value
)
{
addCriterion
(
"update_time >"
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeGreaterThanOrEqualTo
(
Date
value
)
{
addCriterion
(
"update_time >="
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeLessThan
(
Date
value
)
{
addCriterion
(
"update_time <"
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeLessThanOrEqualTo
(
Date
value
)
{
addCriterion
(
"update_time <="
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeIn
(
List
<
Date
>
values
)
{
addCriterion
(
"update_time in"
,
values
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeNotIn
(
List
<
Date
>
values
)
{
addCriterion
(
"update_time not in"
,
values
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeBetween
(
Date
value1
,
Date
value2
)
{
addCriterion
(
"update_time between"
,
value1
,
value2
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeNotBetween
(
Date
value1
,
Date
value2
)
{
addCriterion
(
"update_time not between"
,
value1
,
value2
,
"updateTime"
);
return
(
Criteria
)
this
;
}
}
public
static
class
Criteria
extends
GeneratedCriteria
{
protected
Criteria
()
{
super
();
}
}
/**
* wf_record_detail null
*/
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
);
}
}
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/entity/WfRecordExample.java
0 → 100644
View file @
91a4b126
package
pwc
.
taxtech
.
atms
.
entity
;
import
java.util.ArrayList
;
import
java.util.Date
;
import
java.util.List
;
public
class
WfRecordExample
{
/**
* wf_record
*/
protected
String
orderByClause
;
/**
* wf_record
*/
protected
boolean
distinct
;
/**
* wf_record
*/
protected
List
<
Criteria
>
oredCriteria
;
public
WfRecordExample
()
{
oredCriteria
=
new
ArrayList
<
Criteria
>();
}
public
void
setOrderByClause
(
String
orderByClause
)
{
this
.
orderByClause
=
orderByClause
;
}
public
String
getOrderByClause
()
{
return
orderByClause
;
}
public
void
setDistinct
(
boolean
distinct
)
{
this
.
distinct
=
distinct
;
}
public
boolean
isDistinct
()
{
return
distinct
;
}
public
List
<
Criteria
>
getOredCriteria
()
{
return
oredCriteria
;
}
public
void
or
(
Criteria
criteria
)
{
oredCriteria
.
add
(
criteria
);
}
public
Criteria
or
()
{
Criteria
criteria
=
createCriteriaInternal
();
oredCriteria
.
add
(
criteria
);
return
criteria
;
}
public
Criteria
createCriteria
()
{
Criteria
criteria
=
createCriteriaInternal
();
if
(
oredCriteria
.
size
()
==
0
)
{
oredCriteria
.
add
(
criteria
);
}
return
criteria
;
}
protected
Criteria
createCriteriaInternal
()
{
Criteria
criteria
=
new
Criteria
();
return
criteria
;
}
public
void
clear
()
{
oredCriteria
.
clear
();
orderByClause
=
null
;
distinct
=
false
;
}
/**
* wf_record null
*/
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
(
Long
value
)
{
addCriterion
(
"id ="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotEqualTo
(
Long
value
)
{
addCriterion
(
"id <>"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdGreaterThan
(
Long
value
)
{
addCriterion
(
"id >"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdGreaterThanOrEqualTo
(
Long
value
)
{
addCriterion
(
"id >="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdLessThan
(
Long
value
)
{
addCriterion
(
"id <"
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdLessThanOrEqualTo
(
Long
value
)
{
addCriterion
(
"id <="
,
value
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdIn
(
List
<
Long
>
values
)
{
addCriterion
(
"id in"
,
values
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotIn
(
List
<
Long
>
values
)
{
addCriterion
(
"id not in"
,
values
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdBetween
(
Long
value1
,
Long
value2
)
{
addCriterion
(
"id between"
,
value1
,
value2
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdNotBetween
(
Long
value1
,
Long
value2
)
{
addCriterion
(
"id not between"
,
value1
,
value2
,
"id"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrgIdIsNull
()
{
addCriterion
(
"org_id is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrgIdIsNotNull
()
{
addCriterion
(
"org_id is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrgIdEqualTo
(
String
value
)
{
addCriterion
(
"org_id ="
,
value
,
"orgId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrgIdNotEqualTo
(
String
value
)
{
addCriterion
(
"org_id <>"
,
value
,
"orgId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrgIdGreaterThan
(
String
value
)
{
addCriterion
(
"org_id >"
,
value
,
"orgId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrgIdGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"org_id >="
,
value
,
"orgId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrgIdLessThan
(
String
value
)
{
addCriterion
(
"org_id <"
,
value
,
"orgId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrgIdLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"org_id <="
,
value
,
"orgId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrgIdLike
(
String
value
)
{
addCriterion
(
"org_id like"
,
value
,
"orgId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrgIdNotLike
(
String
value
)
{
addCriterion
(
"org_id not like"
,
value
,
"orgId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrgIdIn
(
List
<
String
>
values
)
{
addCriterion
(
"org_id in"
,
values
,
"orgId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrgIdNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"org_id not in"
,
values
,
"orgId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrgIdBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"org_id between"
,
value1
,
value2
,
"orgId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrgIdNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"org_id not between"
,
value1
,
value2
,
"orgId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdIsNull
()
{
addCriterion
(
"project_id is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdIsNotNull
()
{
addCriterion
(
"project_id is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdEqualTo
(
Long
value
)
{
addCriterion
(
"project_id ="
,
value
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdNotEqualTo
(
Long
value
)
{
addCriterion
(
"project_id <>"
,
value
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdGreaterThan
(
Long
value
)
{
addCriterion
(
"project_id >"
,
value
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdGreaterThanOrEqualTo
(
Long
value
)
{
addCriterion
(
"project_id >="
,
value
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdLessThan
(
Long
value
)
{
addCriterion
(
"project_id <"
,
value
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdLessThanOrEqualTo
(
Long
value
)
{
addCriterion
(
"project_id <="
,
value
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdIn
(
List
<
Long
>
values
)
{
addCriterion
(
"project_id in"
,
values
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdNotIn
(
List
<
Long
>
values
)
{
addCriterion
(
"project_id not in"
,
values
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdBetween
(
Long
value1
,
Long
value2
)
{
addCriterion
(
"project_id between"
,
value1
,
value2
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdNotBetween
(
Long
value1
,
Long
value2
)
{
addCriterion
(
"project_id not between"
,
value1
,
value2
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andYearIsNull
()
{
addCriterion
(
"`year` is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andYearIsNotNull
()
{
addCriterion
(
"`year` is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andYearEqualTo
(
Integer
value
)
{
addCriterion
(
"`year` ="
,
value
,
"year"
);
return
(
Criteria
)
this
;
}
public
Criteria
andYearNotEqualTo
(
Integer
value
)
{
addCriterion
(
"`year` <>"
,
value
,
"year"
);
return
(
Criteria
)
this
;
}
public
Criteria
andYearGreaterThan
(
Integer
value
)
{
addCriterion
(
"`year` >"
,
value
,
"year"
);
return
(
Criteria
)
this
;
}
public
Criteria
andYearGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"`year` >="
,
value
,
"year"
);
return
(
Criteria
)
this
;
}
public
Criteria
andYearLessThan
(
Integer
value
)
{
addCriterion
(
"`year` <"
,
value
,
"year"
);
return
(
Criteria
)
this
;
}
public
Criteria
andYearLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"`year` <="
,
value
,
"year"
);
return
(
Criteria
)
this
;
}
public
Criteria
andYearIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"`year` in"
,
values
,
"year"
);
return
(
Criteria
)
this
;
}
public
Criteria
andYearNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"`year` not in"
,
values
,
"year"
);
return
(
Criteria
)
this
;
}
public
Criteria
andYearBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"`year` between"
,
value1
,
value2
,
"year"
);
return
(
Criteria
)
this
;
}
public
Criteria
andYearNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"`year` not between"
,
value1
,
value2
,
"year"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPeriodIsNull
()
{
addCriterion
(
"period is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPeriodIsNotNull
()
{
addCriterion
(
"period is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPeriodEqualTo
(
Integer
value
)
{
addCriterion
(
"period ="
,
value
,
"period"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPeriodNotEqualTo
(
Integer
value
)
{
addCriterion
(
"period <>"
,
value
,
"period"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPeriodGreaterThan
(
Integer
value
)
{
addCriterion
(
"period >"
,
value
,
"period"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPeriodGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"period >="
,
value
,
"period"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPeriodLessThan
(
Integer
value
)
{
addCriterion
(
"period <"
,
value
,
"period"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPeriodLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"period <="
,
value
,
"period"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPeriodIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"period in"
,
values
,
"period"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPeriodNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"period not in"
,
values
,
"period"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPeriodBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"period between"
,
value1
,
value2
,
"period"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPeriodNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"period not between"
,
value1
,
value2
,
"period"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTypeIsNull
()
{
addCriterion
(
"`type` is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTypeIsNotNull
()
{
addCriterion
(
"`type` is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTypeEqualTo
(
Integer
value
)
{
addCriterion
(
"`type` ="
,
value
,
"type"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTypeNotEqualTo
(
Integer
value
)
{
addCriterion
(
"`type` <>"
,
value
,
"type"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTypeGreaterThan
(
Integer
value
)
{
addCriterion
(
"`type` >"
,
value
,
"type"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTypeGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"`type` >="
,
value
,
"type"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTypeLessThan
(
Integer
value
)
{
addCriterion
(
"`type` <"
,
value
,
"type"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTypeLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"`type` <="
,
value
,
"type"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTypeIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"`type` in"
,
values
,
"type"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTypeNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"`type` not in"
,
values
,
"type"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTypeBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"`type` between"
,
value1
,
value2
,
"type"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTypeNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"`type` not between"
,
value1
,
value2
,
"type"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdIsNull
()
{
addCriterion
(
"act_inst_id is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdIsNotNull
()
{
addCriterion
(
"act_inst_id is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdEqualTo
(
String
value
)
{
addCriterion
(
"act_inst_id ="
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdNotEqualTo
(
String
value
)
{
addCriterion
(
"act_inst_id <>"
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdGreaterThan
(
String
value
)
{
addCriterion
(
"act_inst_id >"
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"act_inst_id >="
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdLessThan
(
String
value
)
{
addCriterion
(
"act_inst_id <"
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"act_inst_id <="
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdLike
(
String
value
)
{
addCriterion
(
"act_inst_id like"
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdNotLike
(
String
value
)
{
addCriterion
(
"act_inst_id not like"
,
value
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdIn
(
List
<
String
>
values
)
{
addCriterion
(
"act_inst_id in"
,
values
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"act_inst_id not in"
,
values
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"act_inst_id between"
,
value1
,
value2
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andActInstIdNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"act_inst_id not between"
,
value1
,
value2
,
"actInstId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusIsNull
()
{
addCriterion
(
"`status` is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusIsNotNull
()
{
addCriterion
(
"`status` is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusEqualTo
(
Integer
value
)
{
addCriterion
(
"`status` ="
,
value
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusNotEqualTo
(
Integer
value
)
{
addCriterion
(
"`status` <>"
,
value
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusGreaterThan
(
Integer
value
)
{
addCriterion
(
"`status` >"
,
value
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"`status` >="
,
value
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusLessThan
(
Integer
value
)
{
addCriterion
(
"`status` <"
,
value
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"`status` <="
,
value
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"`status` in"
,
values
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"`status` not in"
,
values
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"`status` between"
,
value1
,
value2
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andStatusNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"`status` not between"
,
value1
,
value2
,
"status"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidIsNull
()
{
addCriterion
(
"`uid` is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidIsNotNull
()
{
addCriterion
(
"`uid` is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidEqualTo
(
String
value
)
{
addCriterion
(
"`uid` ="
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidNotEqualTo
(
String
value
)
{
addCriterion
(
"`uid` <>"
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidGreaterThan
(
String
value
)
{
addCriterion
(
"`uid` >"
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"`uid` >="
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidLessThan
(
String
value
)
{
addCriterion
(
"`uid` <"
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"`uid` <="
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidLike
(
String
value
)
{
addCriterion
(
"`uid` like"
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidNotLike
(
String
value
)
{
addCriterion
(
"`uid` not like"
,
value
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidIn
(
List
<
String
>
values
)
{
addCriterion
(
"`uid` in"
,
values
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"`uid` not in"
,
values
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"`uid` between"
,
value1
,
value2
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUidNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"`uid` not between"
,
value1
,
value2
,
"uid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentIsNull
()
{
addCriterion
(
"`comment` is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentIsNotNull
()
{
addCriterion
(
"`comment` is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentEqualTo
(
String
value
)
{
addCriterion
(
"`comment` ="
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentNotEqualTo
(
String
value
)
{
addCriterion
(
"`comment` <>"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentGreaterThan
(
String
value
)
{
addCriterion
(
"`comment` >"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"`comment` >="
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentLessThan
(
String
value
)
{
addCriterion
(
"`comment` <"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"`comment` <="
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentLike
(
String
value
)
{
addCriterion
(
"`comment` like"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentNotLike
(
String
value
)
{
addCriterion
(
"`comment` not like"
,
value
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentIn
(
List
<
String
>
values
)
{
addCriterion
(
"`comment` in"
,
values
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"`comment` not in"
,
values
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"`comment` between"
,
value1
,
value2
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCommentNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"`comment` not between"
,
value1
,
value2
,
"comment"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIsNull
()
{
addCriterion
(
"create_time is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIsNotNull
()
{
addCriterion
(
"create_time is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeEqualTo
(
Date
value
)
{
addCriterion
(
"create_time ="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotEqualTo
(
Date
value
)
{
addCriterion
(
"create_time <>"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeGreaterThan
(
Date
value
)
{
addCriterion
(
"create_time >"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeGreaterThanOrEqualTo
(
Date
value
)
{
addCriterion
(
"create_time >="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeLessThan
(
Date
value
)
{
addCriterion
(
"create_time <"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeLessThanOrEqualTo
(
Date
value
)
{
addCriterion
(
"create_time <="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIn
(
List
<
Date
>
values
)
{
addCriterion
(
"create_time in"
,
values
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotIn
(
List
<
Date
>
values
)
{
addCriterion
(
"create_time not in"
,
values
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeBetween
(
Date
value1
,
Date
value2
)
{
addCriterion
(
"create_time between"
,
value1
,
value2
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotBetween
(
Date
value1
,
Date
value2
)
{
addCriterion
(
"create_time not between"
,
value1
,
value2
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeIsNull
()
{
addCriterion
(
"update_time is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeIsNotNull
()
{
addCriterion
(
"update_time is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeEqualTo
(
Date
value
)
{
addCriterion
(
"update_time ="
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeNotEqualTo
(
Date
value
)
{
addCriterion
(
"update_time <>"
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeGreaterThan
(
Date
value
)
{
addCriterion
(
"update_time >"
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeGreaterThanOrEqualTo
(
Date
value
)
{
addCriterion
(
"update_time >="
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeLessThan
(
Date
value
)
{
addCriterion
(
"update_time <"
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeLessThanOrEqualTo
(
Date
value
)
{
addCriterion
(
"update_time <="
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeIn
(
List
<
Date
>
values
)
{
addCriterion
(
"update_time in"
,
values
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeNotIn
(
List
<
Date
>
values
)
{
addCriterion
(
"update_time not in"
,
values
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeBetween
(
Date
value1
,
Date
value2
)
{
addCriterion
(
"update_time between"
,
value1
,
value2
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeNotBetween
(
Date
value1
,
Date
value2
)
{
addCriterion
(
"update_time not between"
,
value1
,
value2
,
"updateTime"
);
return
(
Criteria
)
this
;
}
}
public
static
class
Criteria
extends
GeneratedCriteria
{
protected
Criteria
()
{
super
();
}
}
/**
* wf_record null
*/
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
);
}
}
}
\ No newline at end of file
atms-dao/src/main/resources/pwc/taxtech/atms/dao/WfRecordDetailMapper.xml
0 → 100644
View file @
91a4b126
<?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=
"pwc.taxtech.atms.dao.WfRecordDetailMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
<id
column=
"id"
jdbcType=
"BIGINT"
property=
"id"
/>
<result
column=
"record_id"
jdbcType=
"BIGINT"
property=
"recordId"
/>
<result
column=
"act_inst_id"
jdbcType=
"VARCHAR"
property=
"actInstId"
/>
<result
column=
"act_task_id"
jdbcType=
"VARCHAR"
property=
"actTaskId"
/>
<result
column=
"uid"
jdbcType=
"VARCHAR"
property=
"uid"
/>
<result
column=
"status"
jdbcType=
"TINYINT"
property=
"status"
/>
<result
column=
"comment"
jdbcType=
"VARCHAR"
property=
"comment"
/>
<result
column=
"create_time"
jdbcType=
"TIMESTAMP"
property=
"createTime"
/>
<result
column=
"update_time"
jdbcType=
"TIMESTAMP"
property=
"updateTime"
/>
</resultMap>
<sql
id=
"Example_Where_Clause"
>
<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"
>
<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"
>
id, record_id, act_inst_id, act_task_id, `uid`, `status`, `comment`, create_time,
update_time
</sql>
<select
id=
"selectByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetailExample"
resultMap=
"BaseResultMap"
>
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
from wf_record_detail
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
select
<include
refid=
"Base_Column_List"
/>
from wf_record_detail
where id = #{id,jdbcType=BIGINT}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
delete from wf_record_detail
where id = #{id,jdbcType=BIGINT}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetailExample"
>
delete from wf_record_detail
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
insert into wf_record_detail (id, record_id, act_inst_id,
act_task_id, `uid`, `status`,
`comment`, create_time, update_time
)
values (#{id,jdbcType=BIGINT}, #{recordId,jdbcType=BIGINT}, #{actInstId,jdbcType=VARCHAR},
#{actTaskId,jdbcType=VARCHAR}, #{uid,jdbcType=VARCHAR}, #{status,jdbcType=TINYINT},
#{comment,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}
)
</insert>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
insert into wf_record_detail
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"recordId != null"
>
record_id,
</if>
<if
test=
"actInstId != null"
>
act_inst_id,
</if>
<if
test=
"actTaskId != null"
>
act_task_id,
</if>
<if
test=
"uid != null"
>
`uid`,
</if>
<if
test=
"status != null"
>
`status`,
</if>
<if
test=
"comment != null"
>
`comment`,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"updateTime != null"
>
update_time,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=BIGINT},
</if>
<if
test=
"recordId != null"
>
#{recordId,jdbcType=BIGINT},
</if>
<if
test=
"actInstId != null"
>
#{actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"actTaskId != null"
>
#{actTaskId,jdbcType=VARCHAR},
</if>
<if
test=
"uid != null"
>
#{uid,jdbcType=VARCHAR},
</if>
<if
test=
"status != null"
>
#{status,jdbcType=TINYINT},
</if>
<if
test=
"comment != null"
>
#{comment,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
#{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"updateTime != null"
>
#{updateTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetailExample"
resultType=
"java.lang.Long"
>
select count(*) from wf_record_detail
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</select>
<update
id=
"updateByExampleSelective"
parameterType=
"map"
>
update wf_record_detail
<set>
<if
test=
"record.id != null"
>
id = #{record.id,jdbcType=BIGINT},
</if>
<if
test=
"record.recordId != null"
>
record_id = #{record.recordId,jdbcType=BIGINT},
</if>
<if
test=
"record.actInstId != null"
>
act_inst_id = #{record.actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"record.actTaskId != null"
>
act_task_id = #{record.actTaskId,jdbcType=VARCHAR},
</if>
<if
test=
"record.uid != null"
>
`uid` = #{record.uid,jdbcType=VARCHAR},
</if>
<if
test=
"record.status != null"
>
`status` = #{record.status,jdbcType=TINYINT},
</if>
<if
test=
"record.comment != null"
>
`comment` = #{record.comment,jdbcType=VARCHAR},
</if>
<if
test=
"record.createTime != null"
>
create_time = #{record.createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"record.updateTime != null"
>
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
</if>
</set>
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExample"
parameterType=
"map"
>
update wf_record_detail
set id = #{record.id,jdbcType=BIGINT},
record_id = #{record.recordId,jdbcType=BIGINT},
act_inst_id = #{record.actInstId,jdbcType=VARCHAR},
act_task_id = #{record.actTaskId,jdbcType=VARCHAR},
`uid` = #{record.uid,jdbcType=VARCHAR},
`status` = #{record.status,jdbcType=TINYINT},
`comment` = #{record.comment,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=TIMESTAMP},
update_time = #{record.updateTime,jdbcType=TIMESTAMP}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
update wf_record_detail
<set>
<if
test=
"recordId != null"
>
record_id = #{recordId,jdbcType=BIGINT},
</if>
<if
test=
"actInstId != null"
>
act_inst_id = #{actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"actTaskId != null"
>
act_task_id = #{actTaskId,jdbcType=VARCHAR},
</if>
<if
test=
"uid != null"
>
`uid` = #{uid,jdbcType=VARCHAR},
</if>
<if
test=
"status != null"
>
`status` = #{status,jdbcType=TINYINT},
</if>
<if
test=
"comment != null"
>
`comment` = #{comment,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"updateTime != null"
>
update_time = #{updateTime,jdbcType=TIMESTAMP},
</if>
</set>
where id = #{id,jdbcType=BIGINT}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
update wf_record_detail
set record_id = #{recordId,jdbcType=BIGINT},
act_inst_id = #{actInstId,jdbcType=VARCHAR},
act_task_id = #{actTaskId,jdbcType=VARCHAR},
`uid` = #{uid,jdbcType=VARCHAR},
`status` = #{status,jdbcType=TINYINT},
`comment` = #{comment,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
update_time = #{updateTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=BIGINT}
</update>
<resultMap
id=
"BaseResultMap"
type=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
<id
column=
"id"
jdbcType=
"BIGINT"
property=
"id"
/>
<result
column=
"record_id"
jdbcType=
"BIGINT"
property=
"recordId"
/>
<result
column=
"act_inst_id"
jdbcType=
"VARCHAR"
property=
"actInstId"
/>
<result
column=
"act_task_id"
jdbcType=
"VARCHAR"
property=
"actTaskId"
/>
<result
column=
"uid"
jdbcType=
"VARCHAR"
property=
"uid"
/>
<result
column=
"status"
jdbcType=
"TINYINT"
property=
"status"
/>
<result
column=
"comment"
jdbcType=
"VARCHAR"
property=
"comment"
/>
<result
column=
"create_time"
jdbcType=
"TIMESTAMP"
property=
"createTime"
/>
<result
column=
"update_time"
jdbcType=
"TIMESTAMP"
property=
"updateTime"
/>
</resultMap>
<sql
id=
"Example_Where_Clause"
>
<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"
>
<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"
>
id, record_id, act_inst_id, act_task_id, `uid`, `status`, `comment`, create_time,
update_time
</sql>
<select
id=
"selectByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetailExample"
resultMap=
"BaseResultMap"
>
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
from wf_record_detail
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
select
<include
refid=
"Base_Column_List"
/>
from wf_record_detail
where id = #{id,jdbcType=BIGINT}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
delete from wf_record_detail
where id = #{id,jdbcType=BIGINT}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetailExample"
>
delete from wf_record_detail
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
insert into wf_record_detail (id, record_id, act_inst_id,
act_task_id, `uid`, `status`,
`comment`, create_time, update_time
)
values (#{id,jdbcType=BIGINT}, #{recordId,jdbcType=BIGINT}, #{actInstId,jdbcType=VARCHAR},
#{actTaskId,jdbcType=VARCHAR}, #{uid,jdbcType=VARCHAR}, #{status,jdbcType=TINYINT},
#{comment,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}
)
</insert>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
insert into wf_record_detail
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"recordId != null"
>
record_id,
</if>
<if
test=
"actInstId != null"
>
act_inst_id,
</if>
<if
test=
"actTaskId != null"
>
act_task_id,
</if>
<if
test=
"uid != null"
>
`uid`,
</if>
<if
test=
"status != null"
>
`status`,
</if>
<if
test=
"comment != null"
>
`comment`,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"updateTime != null"
>
update_time,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=BIGINT},
</if>
<if
test=
"recordId != null"
>
#{recordId,jdbcType=BIGINT},
</if>
<if
test=
"actInstId != null"
>
#{actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"actTaskId != null"
>
#{actTaskId,jdbcType=VARCHAR},
</if>
<if
test=
"uid != null"
>
#{uid,jdbcType=VARCHAR},
</if>
<if
test=
"status != null"
>
#{status,jdbcType=TINYINT},
</if>
<if
test=
"comment != null"
>
#{comment,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
#{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"updateTime != null"
>
#{updateTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetailExample"
resultType=
"java.lang.Long"
>
select count(*) from wf_record_detail
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</select>
<update
id=
"updateByExampleSelective"
parameterType=
"map"
>
update wf_record_detail
<set>
<if
test=
"record.id != null"
>
id = #{record.id,jdbcType=BIGINT},
</if>
<if
test=
"record.recordId != null"
>
record_id = #{record.recordId,jdbcType=BIGINT},
</if>
<if
test=
"record.actInstId != null"
>
act_inst_id = #{record.actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"record.actTaskId != null"
>
act_task_id = #{record.actTaskId,jdbcType=VARCHAR},
</if>
<if
test=
"record.uid != null"
>
`uid` = #{record.uid,jdbcType=VARCHAR},
</if>
<if
test=
"record.status != null"
>
`status` = #{record.status,jdbcType=TINYINT},
</if>
<if
test=
"record.comment != null"
>
`comment` = #{record.comment,jdbcType=VARCHAR},
</if>
<if
test=
"record.createTime != null"
>
create_time = #{record.createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"record.updateTime != null"
>
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
</if>
</set>
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExample"
parameterType=
"map"
>
update wf_record_detail
set id = #{record.id,jdbcType=BIGINT},
record_id = #{record.recordId,jdbcType=BIGINT},
act_inst_id = #{record.actInstId,jdbcType=VARCHAR},
act_task_id = #{record.actTaskId,jdbcType=VARCHAR},
`uid` = #{record.uid,jdbcType=VARCHAR},
`status` = #{record.status,jdbcType=TINYINT},
`comment` = #{record.comment,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=TIMESTAMP},
update_time = #{record.updateTime,jdbcType=TIMESTAMP}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
update wf_record_detail
<set>
<if
test=
"recordId != null"
>
record_id = #{recordId,jdbcType=BIGINT},
</if>
<if
test=
"actInstId != null"
>
act_inst_id = #{actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"actTaskId != null"
>
act_task_id = #{actTaskId,jdbcType=VARCHAR},
</if>
<if
test=
"uid != null"
>
`uid` = #{uid,jdbcType=VARCHAR},
</if>
<if
test=
"status != null"
>
`status` = #{status,jdbcType=TINYINT},
</if>
<if
test=
"comment != null"
>
`comment` = #{comment,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"updateTime != null"
>
update_time = #{updateTime,jdbcType=TIMESTAMP},
</if>
</set>
where id = #{id,jdbcType=BIGINT}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
update wf_record_detail
set record_id = #{recordId,jdbcType=BIGINT},
act_inst_id = #{actInstId,jdbcType=VARCHAR},
act_task_id = #{actTaskId,jdbcType=VARCHAR},
`uid` = #{uid,jdbcType=VARCHAR},
`status` = #{status,jdbcType=TINYINT},
`comment` = #{comment,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
update_time = #{updateTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=BIGINT}
</update>
<resultMap
id=
"BaseResultMap"
type=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
<id
column=
"id"
jdbcType=
"BIGINT"
property=
"id"
/>
<result
column=
"record_id"
jdbcType=
"BIGINT"
property=
"recordId"
/>
<result
column=
"act_inst_id"
jdbcType=
"VARCHAR"
property=
"actInstId"
/>
<result
column=
"act_task_id"
jdbcType=
"VARCHAR"
property=
"actTaskId"
/>
<result
column=
"uid"
jdbcType=
"VARCHAR"
property=
"uid"
/>
<result
column=
"status"
jdbcType=
"TINYINT"
property=
"status"
/>
<result
column=
"comment"
jdbcType=
"VARCHAR"
property=
"comment"
/>
<result
column=
"create_time"
jdbcType=
"TIMESTAMP"
property=
"createTime"
/>
<result
column=
"update_time"
jdbcType=
"TIMESTAMP"
property=
"updateTime"
/>
</resultMap>
<sql
id=
"Example_Where_Clause"
>
<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"
>
<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"
>
id, record_id, act_inst_id, act_task_id, `uid`, `status`, `comment`, create_time,
update_time
</sql>
<select
id=
"selectByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetailExample"
resultMap=
"BaseResultMap"
>
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
from wf_record_detail
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
select
<include
refid=
"Base_Column_List"
/>
from wf_record_detail
where id = #{id,jdbcType=BIGINT}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
delete from wf_record_detail
where id = #{id,jdbcType=BIGINT}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetailExample"
>
delete from wf_record_detail
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
insert into wf_record_detail (id, record_id, act_inst_id,
act_task_id, `uid`, `status`,
`comment`, create_time, update_time
)
values (#{id,jdbcType=BIGINT}, #{recordId,jdbcType=BIGINT}, #{actInstId,jdbcType=VARCHAR},
#{actTaskId,jdbcType=VARCHAR}, #{uid,jdbcType=VARCHAR}, #{status,jdbcType=TINYINT},
#{comment,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}
)
</insert>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
insert into wf_record_detail
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"recordId != null"
>
record_id,
</if>
<if
test=
"actInstId != null"
>
act_inst_id,
</if>
<if
test=
"actTaskId != null"
>
act_task_id,
</if>
<if
test=
"uid != null"
>
`uid`,
</if>
<if
test=
"status != null"
>
`status`,
</if>
<if
test=
"comment != null"
>
`comment`,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"updateTime != null"
>
update_time,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=BIGINT},
</if>
<if
test=
"recordId != null"
>
#{recordId,jdbcType=BIGINT},
</if>
<if
test=
"actInstId != null"
>
#{actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"actTaskId != null"
>
#{actTaskId,jdbcType=VARCHAR},
</if>
<if
test=
"uid != null"
>
#{uid,jdbcType=VARCHAR},
</if>
<if
test=
"status != null"
>
#{status,jdbcType=TINYINT},
</if>
<if
test=
"comment != null"
>
#{comment,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
#{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"updateTime != null"
>
#{updateTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetailExample"
resultType=
"java.lang.Long"
>
select count(*) from wf_record_detail
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</select>
<update
id=
"updateByExampleSelective"
parameterType=
"map"
>
update wf_record_detail
<set>
<if
test=
"record.id != null"
>
id = #{record.id,jdbcType=BIGINT},
</if>
<if
test=
"record.recordId != null"
>
record_id = #{record.recordId,jdbcType=BIGINT},
</if>
<if
test=
"record.actInstId != null"
>
act_inst_id = #{record.actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"record.actTaskId != null"
>
act_task_id = #{record.actTaskId,jdbcType=VARCHAR},
</if>
<if
test=
"record.uid != null"
>
`uid` = #{record.uid,jdbcType=VARCHAR},
</if>
<if
test=
"record.status != null"
>
`status` = #{record.status,jdbcType=TINYINT},
</if>
<if
test=
"record.comment != null"
>
`comment` = #{record.comment,jdbcType=VARCHAR},
</if>
<if
test=
"record.createTime != null"
>
create_time = #{record.createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"record.updateTime != null"
>
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
</if>
</set>
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExample"
parameterType=
"map"
>
update wf_record_detail
set id = #{record.id,jdbcType=BIGINT},
record_id = #{record.recordId,jdbcType=BIGINT},
act_inst_id = #{record.actInstId,jdbcType=VARCHAR},
act_task_id = #{record.actTaskId,jdbcType=VARCHAR},
`uid` = #{record.uid,jdbcType=VARCHAR},
`status` = #{record.status,jdbcType=TINYINT},
`comment` = #{record.comment,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=TIMESTAMP},
update_time = #{record.updateTime,jdbcType=TIMESTAMP}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
update wf_record_detail
<set>
<if
test=
"recordId != null"
>
record_id = #{recordId,jdbcType=BIGINT},
</if>
<if
test=
"actInstId != null"
>
act_inst_id = #{actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"actTaskId != null"
>
act_task_id = #{actTaskId,jdbcType=VARCHAR},
</if>
<if
test=
"uid != null"
>
`uid` = #{uid,jdbcType=VARCHAR},
</if>
<if
test=
"status != null"
>
`status` = #{status,jdbcType=TINYINT},
</if>
<if
test=
"comment != null"
>
`comment` = #{comment,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"updateTime != null"
>
update_time = #{updateTime,jdbcType=TIMESTAMP},
</if>
</set>
where id = #{id,jdbcType=BIGINT}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"pwc.taxtech.atms.entity.WfRecordDetail"
>
update wf_record_detail
set record_id = #{recordId,jdbcType=BIGINT},
act_inst_id = #{actInstId,jdbcType=VARCHAR},
act_task_id = #{actTaskId,jdbcType=VARCHAR},
`uid` = #{uid,jdbcType=VARCHAR},
`status` = #{status,jdbcType=TINYINT},
`comment` = #{comment,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
update_time = #{updateTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=BIGINT}
</update>
</mapper>
\ No newline at end of file
atms-dao/src/main/resources/pwc/taxtech/atms/dao/WfRecordMapper.xml
0 → 100644
View file @
91a4b126
<?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=
"pwc.taxtech.atms.dao.WfRecordMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"pwc.taxtech.atms.entity.WfRecord"
>
<id
column=
"id"
jdbcType=
"BIGINT"
property=
"id"
/>
<result
column=
"org_id"
jdbcType=
"VARCHAR"
property=
"orgId"
/>
<result
column=
"project_id"
jdbcType=
"BIGINT"
property=
"projectId"
/>
<result
column=
"year"
jdbcType=
"INTEGER"
property=
"year"
/>
<result
column=
"period"
jdbcType=
"TINYINT"
property=
"period"
/>
<result
column=
"type"
jdbcType=
"TINYINT"
property=
"type"
/>
<result
column=
"act_inst_id"
jdbcType=
"VARCHAR"
property=
"actInstId"
/>
<result
column=
"status"
jdbcType=
"TINYINT"
property=
"status"
/>
<result
column=
"uid"
jdbcType=
"VARCHAR"
property=
"uid"
/>
<result
column=
"comment"
jdbcType=
"VARCHAR"
property=
"comment"
/>
<result
column=
"create_time"
jdbcType=
"TIMESTAMP"
property=
"createTime"
/>
<result
column=
"update_time"
jdbcType=
"TIMESTAMP"
property=
"updateTime"
/>
</resultMap>
<sql
id=
"Example_Where_Clause"
>
<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"
>
<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"
>
id, org_id, project_id, `year`, period, `type`, act_inst_id, `status`, `uid`, `comment`,
create_time, update_time
</sql>
<select
id=
"selectByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordExample"
resultMap=
"BaseResultMap"
>
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
from wf_record
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
select
<include
refid=
"Base_Column_List"
/>
from wf_record
where id = #{id,jdbcType=BIGINT}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
delete from wf_record
where id = #{id,jdbcType=BIGINT}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordExample"
>
delete from wf_record
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"pwc.taxtech.atms.entity.WfRecord"
>
insert into wf_record (id, org_id, project_id,
`year`, period, `type`,
act_inst_id, `status`, `uid`,
`comment`, create_time, update_time
)
values (#{id,jdbcType=BIGINT}, #{orgId,jdbcType=VARCHAR}, #{projectId,jdbcType=BIGINT},
#{year,jdbcType=INTEGER}, #{period,jdbcType=TINYINT}, #{type,jdbcType=TINYINT},
#{actInstId,jdbcType=VARCHAR}, #{status,jdbcType=TINYINT}, #{uid,jdbcType=VARCHAR},
#{comment,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}
)
</insert>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.entity.WfRecord"
>
insert into wf_record
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"orgId != null"
>
org_id,
</if>
<if
test=
"projectId != null"
>
project_id,
</if>
<if
test=
"year != null"
>
`year`,
</if>
<if
test=
"period != null"
>
period,
</if>
<if
test=
"type != null"
>
`type`,
</if>
<if
test=
"actInstId != null"
>
act_inst_id,
</if>
<if
test=
"status != null"
>
`status`,
</if>
<if
test=
"uid != null"
>
`uid`,
</if>
<if
test=
"comment != null"
>
`comment`,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"updateTime != null"
>
update_time,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=BIGINT},
</if>
<if
test=
"orgId != null"
>
#{orgId,jdbcType=VARCHAR},
</if>
<if
test=
"projectId != null"
>
#{projectId,jdbcType=BIGINT},
</if>
<if
test=
"year != null"
>
#{year,jdbcType=INTEGER},
</if>
<if
test=
"period != null"
>
#{period,jdbcType=TINYINT},
</if>
<if
test=
"type != null"
>
#{type,jdbcType=TINYINT},
</if>
<if
test=
"actInstId != null"
>
#{actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"status != null"
>
#{status,jdbcType=TINYINT},
</if>
<if
test=
"uid != null"
>
#{uid,jdbcType=VARCHAR},
</if>
<if
test=
"comment != null"
>
#{comment,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
#{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"updateTime != null"
>
#{updateTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordExample"
resultType=
"java.lang.Long"
>
select count(*) from wf_record
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</select>
<update
id=
"updateByExampleSelective"
parameterType=
"map"
>
update wf_record
<set>
<if
test=
"record.id != null"
>
id = #{record.id,jdbcType=BIGINT},
</if>
<if
test=
"record.orgId != null"
>
org_id = #{record.orgId,jdbcType=VARCHAR},
</if>
<if
test=
"record.projectId != null"
>
project_id = #{record.projectId,jdbcType=BIGINT},
</if>
<if
test=
"record.year != null"
>
`year` = #{record.year,jdbcType=INTEGER},
</if>
<if
test=
"record.period != null"
>
period = #{record.period,jdbcType=TINYINT},
</if>
<if
test=
"record.type != null"
>
`type` = #{record.type,jdbcType=TINYINT},
</if>
<if
test=
"record.actInstId != null"
>
act_inst_id = #{record.actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"record.status != null"
>
`status` = #{record.status,jdbcType=TINYINT},
</if>
<if
test=
"record.uid != null"
>
`uid` = #{record.uid,jdbcType=VARCHAR},
</if>
<if
test=
"record.comment != null"
>
`comment` = #{record.comment,jdbcType=VARCHAR},
</if>
<if
test=
"record.createTime != null"
>
create_time = #{record.createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"record.updateTime != null"
>
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
</if>
</set>
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExample"
parameterType=
"map"
>
update wf_record
set id = #{record.id,jdbcType=BIGINT},
org_id = #{record.orgId,jdbcType=VARCHAR},
project_id = #{record.projectId,jdbcType=BIGINT},
`year` = #{record.year,jdbcType=INTEGER},
period = #{record.period,jdbcType=TINYINT},
`type` = #{record.type,jdbcType=TINYINT},
act_inst_id = #{record.actInstId,jdbcType=VARCHAR},
`status` = #{record.status,jdbcType=TINYINT},
`uid` = #{record.uid,jdbcType=VARCHAR},
`comment` = #{record.comment,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=TIMESTAMP},
update_time = #{record.updateTime,jdbcType=TIMESTAMP}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"pwc.taxtech.atms.entity.WfRecord"
>
update wf_record
<set>
<if
test=
"orgId != null"
>
org_id = #{orgId,jdbcType=VARCHAR},
</if>
<if
test=
"projectId != null"
>
project_id = #{projectId,jdbcType=BIGINT},
</if>
<if
test=
"year != null"
>
`year` = #{year,jdbcType=INTEGER},
</if>
<if
test=
"period != null"
>
period = #{period,jdbcType=TINYINT},
</if>
<if
test=
"type != null"
>
`type` = #{type,jdbcType=TINYINT},
</if>
<if
test=
"actInstId != null"
>
act_inst_id = #{actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"status != null"
>
`status` = #{status,jdbcType=TINYINT},
</if>
<if
test=
"uid != null"
>
`uid` = #{uid,jdbcType=VARCHAR},
</if>
<if
test=
"comment != null"
>
`comment` = #{comment,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"updateTime != null"
>
update_time = #{updateTime,jdbcType=TIMESTAMP},
</if>
</set>
where id = #{id,jdbcType=BIGINT}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"pwc.taxtech.atms.entity.WfRecord"
>
update wf_record
set org_id = #{orgId,jdbcType=VARCHAR},
project_id = #{projectId,jdbcType=BIGINT},
`year` = #{year,jdbcType=INTEGER},
period = #{period,jdbcType=TINYINT},
`type` = #{type,jdbcType=TINYINT},
act_inst_id = #{actInstId,jdbcType=VARCHAR},
`status` = #{status,jdbcType=TINYINT},
`uid` = #{uid,jdbcType=VARCHAR},
`comment` = #{comment,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
update_time = #{updateTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=BIGINT}
</update>
<resultMap
id=
"BaseResultMap"
type=
"pwc.taxtech.atms.entity.WfRecord"
>
<id
column=
"id"
jdbcType=
"BIGINT"
property=
"id"
/>
<result
column=
"org_id"
jdbcType=
"VARCHAR"
property=
"orgId"
/>
<result
column=
"project_id"
jdbcType=
"BIGINT"
property=
"projectId"
/>
<result
column=
"year"
jdbcType=
"INTEGER"
property=
"year"
/>
<result
column=
"period"
jdbcType=
"TINYINT"
property=
"period"
/>
<result
column=
"type"
jdbcType=
"TINYINT"
property=
"type"
/>
<result
column=
"act_inst_id"
jdbcType=
"VARCHAR"
property=
"actInstId"
/>
<result
column=
"status"
jdbcType=
"TINYINT"
property=
"status"
/>
<result
column=
"uid"
jdbcType=
"VARCHAR"
property=
"uid"
/>
<result
column=
"comment"
jdbcType=
"VARCHAR"
property=
"comment"
/>
<result
column=
"create_time"
jdbcType=
"TIMESTAMP"
property=
"createTime"
/>
<result
column=
"update_time"
jdbcType=
"TIMESTAMP"
property=
"updateTime"
/>
</resultMap>
<sql
id=
"Example_Where_Clause"
>
<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"
>
<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"
>
id, org_id, project_id, `year`, period, `type`, act_inst_id, `status`, `uid`, `comment`,
create_time, update_time
</sql>
<select
id=
"selectByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordExample"
resultMap=
"BaseResultMap"
>
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
from wf_record
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
select
<include
refid=
"Base_Column_List"
/>
from wf_record
where id = #{id,jdbcType=BIGINT}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
delete from wf_record
where id = #{id,jdbcType=BIGINT}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordExample"
>
delete from wf_record
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"pwc.taxtech.atms.entity.WfRecord"
>
insert into wf_record (id, org_id, project_id,
`year`, period, `type`,
act_inst_id, `status`, `uid`,
`comment`, create_time, update_time
)
values (#{id,jdbcType=BIGINT}, #{orgId,jdbcType=VARCHAR}, #{projectId,jdbcType=BIGINT},
#{year,jdbcType=INTEGER}, #{period,jdbcType=TINYINT}, #{type,jdbcType=TINYINT},
#{actInstId,jdbcType=VARCHAR}, #{status,jdbcType=TINYINT}, #{uid,jdbcType=VARCHAR},
#{comment,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}
)
</insert>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.entity.WfRecord"
>
insert into wf_record
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"orgId != null"
>
org_id,
</if>
<if
test=
"projectId != null"
>
project_id,
</if>
<if
test=
"year != null"
>
`year`,
</if>
<if
test=
"period != null"
>
period,
</if>
<if
test=
"type != null"
>
`type`,
</if>
<if
test=
"actInstId != null"
>
act_inst_id,
</if>
<if
test=
"status != null"
>
`status`,
</if>
<if
test=
"uid != null"
>
`uid`,
</if>
<if
test=
"comment != null"
>
`comment`,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"updateTime != null"
>
update_time,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=BIGINT},
</if>
<if
test=
"orgId != null"
>
#{orgId,jdbcType=VARCHAR},
</if>
<if
test=
"projectId != null"
>
#{projectId,jdbcType=BIGINT},
</if>
<if
test=
"year != null"
>
#{year,jdbcType=INTEGER},
</if>
<if
test=
"period != null"
>
#{period,jdbcType=TINYINT},
</if>
<if
test=
"type != null"
>
#{type,jdbcType=TINYINT},
</if>
<if
test=
"actInstId != null"
>
#{actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"status != null"
>
#{status,jdbcType=TINYINT},
</if>
<if
test=
"uid != null"
>
#{uid,jdbcType=VARCHAR},
</if>
<if
test=
"comment != null"
>
#{comment,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
#{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"updateTime != null"
>
#{updateTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordExample"
resultType=
"java.lang.Long"
>
select count(*) from wf_record
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</select>
<update
id=
"updateByExampleSelective"
parameterType=
"map"
>
update wf_record
<set>
<if
test=
"record.id != null"
>
id = #{record.id,jdbcType=BIGINT},
</if>
<if
test=
"record.orgId != null"
>
org_id = #{record.orgId,jdbcType=VARCHAR},
</if>
<if
test=
"record.projectId != null"
>
project_id = #{record.projectId,jdbcType=BIGINT},
</if>
<if
test=
"record.year != null"
>
`year` = #{record.year,jdbcType=INTEGER},
</if>
<if
test=
"record.period != null"
>
period = #{record.period,jdbcType=TINYINT},
</if>
<if
test=
"record.type != null"
>
`type` = #{record.type,jdbcType=TINYINT},
</if>
<if
test=
"record.actInstId != null"
>
act_inst_id = #{record.actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"record.status != null"
>
`status` = #{record.status,jdbcType=TINYINT},
</if>
<if
test=
"record.uid != null"
>
`uid` = #{record.uid,jdbcType=VARCHAR},
</if>
<if
test=
"record.comment != null"
>
`comment` = #{record.comment,jdbcType=VARCHAR},
</if>
<if
test=
"record.createTime != null"
>
create_time = #{record.createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"record.updateTime != null"
>
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
</if>
</set>
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExample"
parameterType=
"map"
>
update wf_record
set id = #{record.id,jdbcType=BIGINT},
org_id = #{record.orgId,jdbcType=VARCHAR},
project_id = #{record.projectId,jdbcType=BIGINT},
`year` = #{record.year,jdbcType=INTEGER},
period = #{record.period,jdbcType=TINYINT},
`type` = #{record.type,jdbcType=TINYINT},
act_inst_id = #{record.actInstId,jdbcType=VARCHAR},
`status` = #{record.status,jdbcType=TINYINT},
`uid` = #{record.uid,jdbcType=VARCHAR},
`comment` = #{record.comment,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=TIMESTAMP},
update_time = #{record.updateTime,jdbcType=TIMESTAMP}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"pwc.taxtech.atms.entity.WfRecord"
>
update wf_record
<set>
<if
test=
"orgId != null"
>
org_id = #{orgId,jdbcType=VARCHAR},
</if>
<if
test=
"projectId != null"
>
project_id = #{projectId,jdbcType=BIGINT},
</if>
<if
test=
"year != null"
>
`year` = #{year,jdbcType=INTEGER},
</if>
<if
test=
"period != null"
>
period = #{period,jdbcType=TINYINT},
</if>
<if
test=
"type != null"
>
`type` = #{type,jdbcType=TINYINT},
</if>
<if
test=
"actInstId != null"
>
act_inst_id = #{actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"status != null"
>
`status` = #{status,jdbcType=TINYINT},
</if>
<if
test=
"uid != null"
>
`uid` = #{uid,jdbcType=VARCHAR},
</if>
<if
test=
"comment != null"
>
`comment` = #{comment,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"updateTime != null"
>
update_time = #{updateTime,jdbcType=TIMESTAMP},
</if>
</set>
where id = #{id,jdbcType=BIGINT}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"pwc.taxtech.atms.entity.WfRecord"
>
update wf_record
set org_id = #{orgId,jdbcType=VARCHAR},
project_id = #{projectId,jdbcType=BIGINT},
`year` = #{year,jdbcType=INTEGER},
period = #{period,jdbcType=TINYINT},
`type` = #{type,jdbcType=TINYINT},
act_inst_id = #{actInstId,jdbcType=VARCHAR},
`status` = #{status,jdbcType=TINYINT},
`uid` = #{uid,jdbcType=VARCHAR},
`comment` = #{comment,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
update_time = #{updateTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=BIGINT}
</update>
<resultMap
id=
"BaseResultMap"
type=
"pwc.taxtech.atms.entity.WfRecord"
>
<id
column=
"id"
jdbcType=
"BIGINT"
property=
"id"
/>
<result
column=
"org_id"
jdbcType=
"VARCHAR"
property=
"orgId"
/>
<result
column=
"project_id"
jdbcType=
"BIGINT"
property=
"projectId"
/>
<result
column=
"year"
jdbcType=
"INTEGER"
property=
"year"
/>
<result
column=
"period"
jdbcType=
"TINYINT"
property=
"period"
/>
<result
column=
"type"
jdbcType=
"TINYINT"
property=
"type"
/>
<result
column=
"act_inst_id"
jdbcType=
"VARCHAR"
property=
"actInstId"
/>
<result
column=
"status"
jdbcType=
"TINYINT"
property=
"status"
/>
<result
column=
"uid"
jdbcType=
"VARCHAR"
property=
"uid"
/>
<result
column=
"comment"
jdbcType=
"VARCHAR"
property=
"comment"
/>
<result
column=
"create_time"
jdbcType=
"TIMESTAMP"
property=
"createTime"
/>
<result
column=
"update_time"
jdbcType=
"TIMESTAMP"
property=
"updateTime"
/>
</resultMap>
<sql
id=
"Example_Where_Clause"
>
<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"
>
<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"
>
id, org_id, project_id, `year`, period, `type`, act_inst_id, `status`, `uid`, `comment`,
create_time, update_time
</sql>
<select
id=
"selectByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordExample"
resultMap=
"BaseResultMap"
>
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
from wf_record
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
select
<include
refid=
"Base_Column_List"
/>
from wf_record
where id = #{id,jdbcType=BIGINT}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
delete from wf_record
where id = #{id,jdbcType=BIGINT}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordExample"
>
delete from wf_record
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"pwc.taxtech.atms.entity.WfRecord"
>
insert into wf_record (id, org_id, project_id,
`year`, period, `type`,
act_inst_id, `status`, `uid`,
`comment`, create_time, update_time
)
values (#{id,jdbcType=BIGINT}, #{orgId,jdbcType=VARCHAR}, #{projectId,jdbcType=BIGINT},
#{year,jdbcType=INTEGER}, #{period,jdbcType=TINYINT}, #{type,jdbcType=TINYINT},
#{actInstId,jdbcType=VARCHAR}, #{status,jdbcType=TINYINT}, #{uid,jdbcType=VARCHAR},
#{comment,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP}
)
</insert>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.entity.WfRecord"
>
insert into wf_record
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"orgId != null"
>
org_id,
</if>
<if
test=
"projectId != null"
>
project_id,
</if>
<if
test=
"year != null"
>
`year`,
</if>
<if
test=
"period != null"
>
period,
</if>
<if
test=
"type != null"
>
`type`,
</if>
<if
test=
"actInstId != null"
>
act_inst_id,
</if>
<if
test=
"status != null"
>
`status`,
</if>
<if
test=
"uid != null"
>
`uid`,
</if>
<if
test=
"comment != null"
>
`comment`,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"updateTime != null"
>
update_time,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=BIGINT},
</if>
<if
test=
"orgId != null"
>
#{orgId,jdbcType=VARCHAR},
</if>
<if
test=
"projectId != null"
>
#{projectId,jdbcType=BIGINT},
</if>
<if
test=
"year != null"
>
#{year,jdbcType=INTEGER},
</if>
<if
test=
"period != null"
>
#{period,jdbcType=TINYINT},
</if>
<if
test=
"type != null"
>
#{type,jdbcType=TINYINT},
</if>
<if
test=
"actInstId != null"
>
#{actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"status != null"
>
#{status,jdbcType=TINYINT},
</if>
<if
test=
"uid != null"
>
#{uid,jdbcType=VARCHAR},
</if>
<if
test=
"comment != null"
>
#{comment,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
#{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"updateTime != null"
>
#{updateTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"pwc.taxtech.atms.entity.WfRecordExample"
resultType=
"java.lang.Long"
>
select count(*) from wf_record
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</select>
<update
id=
"updateByExampleSelective"
parameterType=
"map"
>
update wf_record
<set>
<if
test=
"record.id != null"
>
id = #{record.id,jdbcType=BIGINT},
</if>
<if
test=
"record.orgId != null"
>
org_id = #{record.orgId,jdbcType=VARCHAR},
</if>
<if
test=
"record.projectId != null"
>
project_id = #{record.projectId,jdbcType=BIGINT},
</if>
<if
test=
"record.year != null"
>
`year` = #{record.year,jdbcType=INTEGER},
</if>
<if
test=
"record.period != null"
>
period = #{record.period,jdbcType=TINYINT},
</if>
<if
test=
"record.type != null"
>
`type` = #{record.type,jdbcType=TINYINT},
</if>
<if
test=
"record.actInstId != null"
>
act_inst_id = #{record.actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"record.status != null"
>
`status` = #{record.status,jdbcType=TINYINT},
</if>
<if
test=
"record.uid != null"
>
`uid` = #{record.uid,jdbcType=VARCHAR},
</if>
<if
test=
"record.comment != null"
>
`comment` = #{record.comment,jdbcType=VARCHAR},
</if>
<if
test=
"record.createTime != null"
>
create_time = #{record.createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"record.updateTime != null"
>
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
</if>
</set>
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExample"
parameterType=
"map"
>
update wf_record
set id = #{record.id,jdbcType=BIGINT},
org_id = #{record.orgId,jdbcType=VARCHAR},
project_id = #{record.projectId,jdbcType=BIGINT},
`year` = #{record.year,jdbcType=INTEGER},
period = #{record.period,jdbcType=TINYINT},
`type` = #{record.type,jdbcType=TINYINT},
act_inst_id = #{record.actInstId,jdbcType=VARCHAR},
`status` = #{record.status,jdbcType=TINYINT},
`uid` = #{record.uid,jdbcType=VARCHAR},
`comment` = #{record.comment,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=TIMESTAMP},
update_time = #{record.updateTime,jdbcType=TIMESTAMP}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"pwc.taxtech.atms.entity.WfRecord"
>
update wf_record
<set>
<if
test=
"orgId != null"
>
org_id = #{orgId,jdbcType=VARCHAR},
</if>
<if
test=
"projectId != null"
>
project_id = #{projectId,jdbcType=BIGINT},
</if>
<if
test=
"year != null"
>
`year` = #{year,jdbcType=INTEGER},
</if>
<if
test=
"period != null"
>
period = #{period,jdbcType=TINYINT},
</if>
<if
test=
"type != null"
>
`type` = #{type,jdbcType=TINYINT},
</if>
<if
test=
"actInstId != null"
>
act_inst_id = #{actInstId,jdbcType=VARCHAR},
</if>
<if
test=
"status != null"
>
`status` = #{status,jdbcType=TINYINT},
</if>
<if
test=
"uid != null"
>
`uid` = #{uid,jdbcType=VARCHAR},
</if>
<if
test=
"comment != null"
>
`comment` = #{comment,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"updateTime != null"
>
update_time = #{updateTime,jdbcType=TIMESTAMP},
</if>
</set>
where id = #{id,jdbcType=BIGINT}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"pwc.taxtech.atms.entity.WfRecord"
>
update wf_record
set org_id = #{orgId,jdbcType=VARCHAR},
project_id = #{projectId,jdbcType=BIGINT},
`year` = #{year,jdbcType=INTEGER},
period = #{period,jdbcType=TINYINT},
`type` = #{type,jdbcType=TINYINT},
act_inst_id = #{actInstId,jdbcType=VARCHAR},
`status` = #{status,jdbcType=TINYINT},
`uid` = #{uid,jdbcType=VARCHAR},
`comment` = #{comment,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
update_time = #{updateTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=BIGINT}
</update>
</mapper>
\ No newline at end of file
atms-dao/src/test/java/pwc/taxtech/atms/gen/MyBatisGeneratorTest.java
View file @
91a4b126
...
...
@@ -16,7 +16,7 @@ public class MyBatisGeneratorTest {
List
<
String
>
warnings
=
new
ArrayList
<>();
boolean
overwrite
=
true
;
//配置文件
// File configFile = new File(MyBatisGeneratorTest.class.getClassLoader().getResource("
g
eneratorConfig.xml").getPath());
// File configFile = new File(MyBatisGeneratorTest.class.getClassLoader().getResource("
vatG
eneratorConfig.xml").getPath());
File
configFile
=
new
File
(
MyBatisGeneratorTest
.
class
.
getClassLoader
().
getResource
(
"generatorConfig.xml"
).
getPath
());
ConfigurationParser
cp
=
new
ConfigurationParser
(
warnings
);
Configuration
config
=
cp
.
parseConfiguration
(
configFile
);
...
...
atms-dao/src/test/java/pwc/taxtech/atms/gen/SimpleCommentGenerator.java
View file @
91a4b126
...
...
@@ -201,9 +201,9 @@ public class SimpleCommentGenerator implements CommentGenerator {
method
.
addJavaDocLine
(
"/**"
);
StringBuilder
sb
=
new
StringBuilder
();
sb
.
append
(
" * "
);
sb
.
append
(
introspectedColumn
.
getRemarks
());
method
.
addJavaDocLine
(
sb
.
toString
());
//
sb.append(" * ");
//
sb.append(introspectedColumn.getRemarks());
//
method.addJavaDocLine(sb.toString());
sb
.
setLength
(
0
);
sb
.
append
(
" * @return "
);
...
...
@@ -226,9 +226,9 @@ public class SimpleCommentGenerator implements CommentGenerator {
method
.
addJavaDocLine
(
"/**"
);
StringBuilder
sb
=
new
StringBuilder
();
sb
.
append
(
" * "
);
sb
.
append
(
introspectedColumn
.
getRemarks
());
method
.
addJavaDocLine
(
sb
.
toString
());
//
sb.append(" * ");
//
sb.append(introspectedColumn.getRemarks());
//
method.addJavaDocLine(sb.toString());
Parameter
parm
=
method
.
getParameters
().
get
(
0
);
sb
.
setLength
(
0
);
...
...
atms-dao/src/test/resources/generator.properties
0 → 100644
View file @
91a4b126
jdbc.driverClass
=
com.mysql.jdbc.Driver
jdbc.connectionURL
=
jdbc:mysql://10.158.230.16:3306/tax_admin_didi?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=false
jdbc.userId
=
root
jdbc.password
=
taxadmin2018
atms-dao/src/test/resources/generatorConfig.xml
0 → 100644
View file @
91a4b126
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<!-- See: http://www.mybatis.org/generator/configreference/commentGenerator.html -->
<properties
resource=
"generator.properties"
/>
<!-- <classPathEntry location="../hsqldb/hsqldb-2.3.5.jar" /> -->
<context
id=
"contextId"
targetRuntime=
"MyBatis3"
>
<!-- 考虑需要兼容DB2与ORCAL数据库, 大部份字段不需要加双引号,autoDelimitKeywords设置为false -->
<property
name=
"autoDelimitKeywords"
value=
"true"
/>
<property
name=
"javaFileEncoding"
value=
"UTF-8"
/>
<!-- beginningDelimiter和endingDelimiter:指明数据库的用于标记数据库对象名的符号,比如ORACLE就是双引号,MYSQL默认是`反引号; -->
<property
name=
"beginningDelimiter"
value=
"`"
/>
<property
name=
"endingDelimiter"
value=
"`"
/>
<plugin
type=
"org.mybatis.generator.plugins.MapperAnnotationPlugin"
/>
<!-- <plugin type="org.mybatis.generator.plugins.RowBoundsPlugin"/>-->
<plugin
type=
"org.mybatis.generator.plugins.ToStringPlugin"
/>
<plugin
type=
"org.mybatis.generator.plugins.SerializablePlugin"
/>
<commentGenerator
type=
"pwc.taxtech.atms.gen.SimpleCommentGenerator"
>
<property
name=
"suppressDate"
value=
"true"
/>
<property
name=
"addRemarkComments"
value=
"true"
/>
</commentGenerator>
<jdbcConnection
driverClass=
"${jdbc.driverClass}"
connectionURL=
"${jdbc.connectionURL}"
userId=
"${jdbc.userId}"
password=
"${jdbc.password}"
>
</jdbcConnection>
<javaTypeResolver>
<property
name=
"forceBigDecimals"
value=
"false"
/>
</javaTypeResolver>
<javaModelGenerator
targetPackage=
"pwc.taxtech.atms.entity"
targetProject=
"C:/source/tax/atms/atms-dao/src/main/java"
>
<property
name=
"trimStrings"
value=
"true"
/>
<property
name=
"rootClass"
value=
"pwc.taxtech.atms.entity.BaseEntity"
/>
<property
name=
"enableSubPackages"
value=
"true"
/>
</javaModelGenerator>
<sqlMapGenerator
targetPackage=
"pwc.taxtech.atms.dao"
targetProject=
"C:/source/tax/atms/atms-dao/src/main/resources"
>
<property
name=
"enableSubPackages"
value=
"true"
/>
</sqlMapGenerator>
<javaClientGenerator
type=
"XMLMAPPER"
targetPackage=
"pwc.taxtech.atms.dao"
targetProject=
"C:/source/tax/atms/atms-dao/src/main/java"
>
<property
name=
"rootInterface"
value=
"pwc.taxtech.atms.MyMapper"
/>
<property
name=
"enableSubPackages"
value=
"true"
/>
</javaClientGenerator>
<table
tableName=
"wf_record"
domainObjectName=
"WfRecord"
>
<property
name=
"useActualColumnNames"
value=
"false"
/>
<property
name=
"ignoreQualifiersAtRuntime"
value=
"true"
/>
<columnOverride
column=
"period"
javaType=
"java.lang.Integer"
jdbcType=
"TINYINT"
/>
<columnOverride
column=
"type"
javaType=
"java.lang.Integer"
jdbcType=
"TINYINT"
/>
<columnOverride
column=
"status"
javaType=
"java.lang.Integer"
jdbcType=
"TINYINT"
/>
</table>
<table
tableName=
"wf_record_detail"
domainObjectName=
"WfRecordDetail"
>
<property
name=
"useActualColumnNames"
value=
"false"
/>
<property
name=
"ignoreQualifiersAtRuntime"
value=
"true"
/>
<columnOverride
column=
"status"
javaType=
"java.lang.Integer"
jdbcType=
"TINYINT"
/>
</table>
<!-- <table tableName="data_import_log" domainObjectName="DataImportLog">-->
<!-- <property name="useActualColumnNames" value="false"/>-->
<!-- <property name="ignoreQualifiersAtRuntime" value="true"/>-->
<!-- <columnOverride column="type" javaType="java.lang.Integer" jdbcType="TINYINT"/>-->
<!-- <columnOverride column="tms_period_month" javaType="java.lang.Integer" jdbcType="TINYINT"/>-->
<!-- <columnOverride column="period_month" javaType="java.lang.Integer" jdbcType="TINYINT"/>-->
<!-- </table>-->
<!--<table tableName="analysis_expected_tax_return" domainObjectName="AnalysisExpectedTaxReturn">-->
<!--<property name="useActualColumnNames" value="false"/>-->
<!--<property name="ignoreQualifiersAtRuntime" value="true"/>-->
<!--</table>-->
<!--<table tableName="cit_distribution" domainObjectName="CitDistribution">-->
<!--<property name="useActualColumnNames" value="false"/>-->
<!--<property name="ignoreQualifiersAtRuntime" value="true"/>-->
<!--</table>-->
<!--<table tableName="operation_log_entry_log" domainObjectName="OperationLogEntryLog">-->
<!--<property name="useActualColumnNames" value="false"/>-->
<!--<property name="ignoreQualifiersAtRuntime" value="true"/>-->
<!--</table>-->
<!--<table tableName="organization" domainObjectName="Organization">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="num_of_branches" javaType="java.lang.Integer" jdbcType="TINYINT"/>
</table>
<table tableName="organization_extra" domainObjectName="OrganizationExtra">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="tax_return_business_type" javaType="java.lang.Integer" jdbcType="TINYINT"/>
</table>
<table tableName="organization_tax_rule" domainObjectName="OrganizationTaxRule">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="organization_tax_officer" domainObjectName="OrganizationTaxOfficer">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="organization_invoice" domainObjectName="OrganizationInvoice">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="organization_return_rate" domainObjectName="OrganizationReturnRate">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="organization_accounting_rate" domainObjectName="OrganizationAccountingRate">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="organization_employee" domainObjectName="OrganizationEmployee">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="organization_taxpayer_qualification" domainObjectName="OrganizationTaxpayerQualification">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="organization_approved_levy_info" domainObjectName="OrganizationApprovedLevyInfo">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="equity_information" domainObjectName="EquityInformation">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<!–<table tableName="equity_information_history" domainObjectName="EquityInformation">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>–>
<table tableName="organization" domainObjectName="Organization">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="organization_extra" domainObjectName="OrganizationExtra">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="account_mapping" domainObjectName="AccountMapping">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="account_mapping_keyword" domainObjectName="AccountMappingKeyword">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="account_mapping_manual" domainObjectName="AccountMappingManual">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="area" domainObjectName="Area">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
</table>
<table tableName="area_region" domainObjectName="AreaRegion">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="asset_detail_group" domainObjectName="AssetDetailGroup">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="asset_group" domainObjectName="AssetGroup">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="business_unit" domainObjectName="BusinessUnit">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
<columnOverride column="is_leaf" property="isLeaf" javaType="Boolean"/>
</table>
<table tableName="cache" domainObjectName="Cache">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="cell_data_source" domainObjectName="CellDataSource">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="cell_template" domainObjectName="CellTemplate">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_read_only" property="isReadOnly" javaType="Boolean"/>
</table>
<table tableName="cell_template_config" domainObjectName="CellTemplateConfig">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="customer" domainObjectName="Customer">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="dictionary" domainObjectName="Dictionary">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
</table>
<table tableName="dimension" domainObjectName="Dimension">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_mandatory" property="isMandatory" javaType="Boolean"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
<columnOverride column="is_system_dimension" property="isSystemDimension" javaType="Boolean"/>
</table>
<table tableName="dimension_value" domainObjectName="DimensionValue">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
</table>
<table tableName="dimension_value_org" domainObjectName="DimensionValueOrg">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="enterprise_account" domainObjectName="EnterpriseAccount">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
<columnOverride column="is_leaf" property="isLeaf" javaType="Boolean"/>
</table>
<table tableName="enterprise_account_set" domainObjectName="EnterpriseAccountSet">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
</table>
<table tableName="enterprise_account_set_org" domainObjectName="EnterpriseAccountSetOrg">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="formula_config" domainObjectName="FormulaConfig">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="formula_param_config" domainObjectName="FormulaParamConfig">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="formula_param_mapping" domainObjectName="FormulaParamMapping">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="formula_param_option" domainObjectName="FormulaParamOption">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="gl_balance" domainObjectName="GlBalance">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="industry" domainObjectName="Industry">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
</table>
<!–<table tableName="input_ap_invoice" domainObjectName="InputApInvoice">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="input_invoice" domainObjectName="InputInvoice">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="input_material_item" domainObjectName="InputMaterialItem">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="input_material_item_category" domainObjectName="InputMaterialItemCategory">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="input_vendor" domainObjectName="InputVendor">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="input_vendor_address" domainObjectName="InputVendorAddress">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="input_vendor_bank_account" domainObjectName="InputVendorBankAccount">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="input_vendor_contactor" domainObjectName="InputVendorContactor">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="input_vendor_site" domainObjectName="InputVendorSite">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>–>
<table tableName="key_value_config" domainObjectName="KeyValueConfig">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="key_value_reference" domainObjectName="KeyValueReference">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="menu" domainObjectName="Menu">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="model_category" domainObjectName="ModelCategory">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="model_config" domainObjectName="ModelConfig">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="model_service_config" domainObjectName="ModelServiceConfig">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="operation_log" domainObjectName="OperationLog">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="operation_log_basic_data" domainObjectName="OperationLogBasicData">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="operation_log_enter_prise" domainObjectName="OperationLogEnterPrise">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="operation_log_keyvalue" domainObjectName="OperationLogKeyvalue">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="operation_log_organization" domainObjectName="OperationLogOrganization">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="operation_log_project" domainObjectName="OperationLogProject">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="operation_log_report" domainObjectName="OperationLogReport">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="operation_log_role" domainObjectName="OperationLogRole">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="operation_log_rule_engine" domainObjectName="OperationLogRuleEngine">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="operation_log_subject" domainObjectName="OperationLogSubject">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="operation_log_user" domainObjectName="OperationLogUser">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="organization_service_template_group" domainObjectName="OrgServiceTemplateGroup">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="organization" domainObjectName="Organization">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="organization_structure" domainObjectName="OrganizationStructure">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
</table>
<!–<table tableName="output_ar_invoice" domainObjectName="OutputArInvoice">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="output_ar_receivables_trx" domainObjectName="OutputArReceivablesTrx">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="output_ar_trx_type" domainObjectName="OutputArTrxType">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="output_customer" domainObjectName="OutputCustomer">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="output_customer_account" domainObjectName="OutputCustomerAccount">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="output_customer_bank" domainObjectName="OutputCustomerBank">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="output_customer_contactor" domainObjectName="OutputCustomerContactor">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="output_customer_ex" domainObjectName="OutputCustomerEx">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="output_customer_party_site" domainObjectName="OutputCustomerPartySite">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="output_customer_site_use" domainObjectName="OutputCustomerSiteUse">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="output_flex_value" domainObjectName="OutputFlexValue">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="output_gl_daily_rate" domainObjectName="OutputGlDailyRate">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="output_invoice" domainObjectName="OutputInvoice">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="output_operation_unit" domainObjectName="OutputOperationUnit">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="output_ra_interface" domainObjectName="OutputRaInterface">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>–>
<table tableName="period_approve" domainObjectName="PeriodApprove">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_cell_comment" domainObjectName="PeriodCellComment">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_cell_data" domainObjectName="PeriodCellData">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_cell_data_source" domainObjectName="PeriodCellDataSource">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_cell_template" domainObjectName="PeriodCellTemplate">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_cell_template_config" domainObjectName="PeriodCellTemplateConfig">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_data_source" domainObjectName="PeriodDataSource">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_data_source_detail" domainObjectName="PeriodDataSourceDetail">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_enterprise_account" domainObjectName="PeriodEnterpriseAccount">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_formula_block" domainObjectName="PeriodFormulaBlock">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_info" domainObjectName="PeriodInfo">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_job" domainObjectName="PeriodJob">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_modified_report_cell" domainObjectName="PeriodModifiedReportCell">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_report" domainObjectName="PeriodReport">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_standard_account" domainObjectName="PeriodStandardAccount">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_tax_payer_report_rule" domainObjectName="PeriodTaxPayerReportRule">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_tax_rule_setting" domainObjectName="PeriodTaxRuleSetting">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_tax_rule_setting_org" domainObjectName="PeriodTaxRuleSettingOrg">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="period_template" domainObjectName="PeriodTemplate">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="permission" domainObjectName="Permission">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
<columnOverride column="is_visible" property="isVisible" javaType="Boolean"/>
</table>
<table tableName="project" domainObjectName="Project">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
</table>
<table tableName="project_client" domainObjectName="ProjectClient">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
</table>
<table tableName="project_service_type" domainObjectName="ProjectServiceType">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="project_status_manage" domainObjectName="ProjectStatusManage">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="region" domainObjectName="Region">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
</table>
<table tableName="role" domainObjectName="Role">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="role_category" domainObjectName="RoleCategory">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
</table>
<table tableName="role_permission" domainObjectName="RolePermission">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="service_type" domainObjectName="ServiceType">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
</table>
<table tableName="standard_account" domainObjectName="StandardAccount">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
<columnOverride column="is_leaf" property="isLeaf" javaType="Boolean"/>
</table>
<table tableName="statistic_attribute" domainObjectName="StatisticAttribute">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
</table>
<table tableName="statistic_attribute_dimension" domainObjectName="StatisticAttributeDimension">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="stock" domainObjectName="Stock">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<!–<table tableName="table_test" domainObjectName="TableTest">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>–>
<table tableName="tax_payer_report_rule" domainObjectName="TaxPayerReportRule">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_default" property="isDefault" javaType="Boolean"/>
</table>
<table tableName="tax_rule_setting" domainObjectName="TaxRuleSetting">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_default" property="isDefault" javaType="Boolean"/>
</table>
<table tableName="tax_rule_setting_organization" domainObjectName="TaxRuleSettingOrganization">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_active" property="isActive" javaType="Boolean"/>
</table>
<table tableName="template" domainObjectName="Template">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_system_type" property="isSystemType" javaType="java.lang.Boolean"/>
<columnOverride column="is_active_association" property="isActiveAssociation" javaType="java.lang.Boolean"/>
</table>
<table tableName="template_formula" domainObjectName="TemplateFormula">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_manual_change" property="isManualChange" javaType="Boolean"/>
</table>
<table tableName="template_group" domainObjectName="TemplateGroup">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_system_type" property="isSystemType" javaType="java.lang.Boolean"/>
</table>
<table tableName="user" domainObjectName="User">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_admin" property="isAdmin" javaType="Boolean"/>
<columnOverride column="is_super_admin" property="isSuperAdmin" javaType="Boolean"/>
</table>
<table tableName="user_dimension_value" domainObjectName="UserDimensionValue">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_accessible" property="isAccessible" javaType="java.lang.Boolean"/>
<columnOverride column="has_original_role" property="hasOriginalRole" javaType="java.lang.Boolean"/>
</table>
<table tableName="user_dimension_value_org" domainObjectName="UserDimensionValueOrg">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_heritable" property="isHeritable" javaType="Boolean"/>
</table>
<table tableName="user_dimension_value_role" domainObjectName="UserDimensionValueRole">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="user_historical_password" domainObjectName="UserHistoricalPassword">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="user_organization" domainObjectName="UserOrganization">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
<columnOverride column="is_accessible" property="isAccessible" javaType="java.lang.Boolean"/>
<columnOverride column="has_original_role" property="hasOriginalRole" javaType="java.lang.Boolean"/>
</table>
<table tableName="user_organization_role" domainObjectName="UserOrganizationRole">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
<table tableName="user_role" domainObjectName="UserRole">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>-->
</context>
</generatorConfiguration>
\ 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