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
8d2b4f76
Commit
8d2b4f76
authored
Mar 02, 2019
by
gary
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1、数据校验日志
parent
d4cf5f97
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
2763 additions
and
23 deletions
+2763
-23
DataImportController.java
...ava/pwc/taxtech/atms/controller/DataImportController.java
+3
-3
DataValidateLogDto.java
...rc/main/java/pwc/taxtech/atms/dto/DataValidateLogDto.java
+511
-0
DataImportService.java
...java/pwc/taxtech/atms/service/impl/DataImportService.java
+33
-1
DataValidateLogMapper.java
...main/java/pwc/taxtech/atms/dao/DataValidateLogMapper.java
+109
-0
DataValidateLog.java
...rc/main/java/pwc/taxtech/atms/entity/DataValidateLog.java
+506
-0
DataValidateLogExample.java
.../java/pwc/taxtech/atms/entity/DataValidateLogExample.java
+1164
-0
DataValidateLogMapper.xml
.../resources/pwc/taxtech/atms/dao/DataValidateLogMapper.xml
+417
-0
dataProcessService.js
.../main/webapp/app/common/vatservices/dataProcessService.js
+0
-3
vatImportService.js
...rc/main/webapp/app/common/vatservices/vatImportService.js
+3
-0
process-log.ctrl.js
...webapp/app/dataImport/log/process-log/process-log.ctrl.js
+17
-16
No files found.
atms-api/src/main/java/pwc/taxtech/atms/controller/DataImportController.java
View file @
8d2b4f76
...
...
@@ -219,11 +219,11 @@ public class DataImportController extends BaseController {
return
new
CamelPagingResultDto
<>(
dataImportService
.
displayImportLog
(
param
));
}
/*
@ResponseBody
@ResponseBody
@RequestMapping
(
value
=
"displayProcessLog"
,
method
=
RequestMethod
.
POST
)
public CamelPagingResultDto<Data
Process
LogDto> displayProcessLog(@RequestBody DataProcessParam param) {
public
CamelPagingResultDto
<
Data
Validate
LogDto
>
displayProcessLog
(
@RequestBody
DataProcessParam
param
)
{
return
new
CamelPagingResultDto
<>(
dataImportService
.
displayProcessLog
(
param
));
}
*/
}
@ResponseBody
@RequestMapping
(
value
=
"callExtractFinancialData"
,
method
=
RequestMethod
.
POST
)
...
...
atms-api/src/main/java/pwc/taxtech/atms/dto/DataValidateLogDto.java
0 → 100644
View file @
8d2b4f76
package
pwc
.
taxtech
.
atms
.
dto
;
import
com.fasterxml.jackson.databind.annotation.JsonSerialize
;
import
pwc.taxtech.atms.common.util.PwCIdSerialize
;
import
pwc.taxtech.atms.entity.BaseEntity
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table data_validate_log
*
* @mbg.generated do_not_delete_during_merge
*/
public
class
DataValidateLogDto
implements
Serializable
{
/**
* Database Column Remarks:
* 唯一编号
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.id
*
* @mbg.generated
*/
@JsonSerialize
(
using
=
PwCIdSerialize
.
class
)
private
Long
id
;
/**
* Database Column Remarks:
* 机构ID
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.organization_id
*
* @mbg.generated
*/
private
String
organizationId
;
/**
* Database Column Remarks:
* 项目编号
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.project_id
*
* @mbg.generated
*/
private
String
projectId
;
/**
* Database Column Remarks:
* 机构代码 org code
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.company_code
*
* @mbg.generated
*/
private
String
companyCode
;
/**
* Database Column Remarks:
* 公司名称 org name
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.company_name
*
* @mbg.generated
*/
private
String
companyName
;
/**
* Database Column Remarks:
* 税务系统期间 yyyyMM 201901-201912
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.tms_period
*
* @mbg.generated
*/
private
Integer
tmsPeriod
;
/**
* Database Column Remarks:
* 期间yyyyMM 201901-201913
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.period
*
* @mbg.generated
*/
private
Integer
period
;
/**
* Database Column Remarks:
* 校验内容
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.validate_content
*
* @mbg.generated
*/
private
String
validateContent
;
/**
* Database Column Remarks:
* 校验结果(end or error )
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.validate_result
*
* @mbg.generated
*/
private
String
validateResult
;
/**
* Database Column Remarks:
* 结果信息
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.result
*
* @mbg.generated
*/
private
String
result
;
/**
* Database Column Remarks:
* 校验人
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.validate_user
*
* @mbg.generated
*/
private
String
validateUser
;
/**
* Database Column Remarks:
* 创建时间
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.create_time
*
* @mbg.generated
*/
private
Date
createTime
;
/**
* Database Column Remarks:
* 更新时间
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.update_time
*
* @mbg.generated
*/
private
Date
updateTime
;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table data_validate_log
*
* @mbg.generated
*/
private
static
final
long
serialVersionUID
=
1L
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.id
*
* @return the value of data_validate_log.id
*
* @mbg.generated
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.id
*
* @param id the value for data_validate_log.id
*
* @mbg.generated
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.organization_id
*
* @return the value of data_validate_log.organization_id
*
* @mbg.generated
*/
public
String
getOrganizationId
()
{
return
organizationId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.organization_id
*
* @param organizationId the value for data_validate_log.organization_id
*
* @mbg.generated
*/
public
void
setOrganizationId
(
String
organizationId
)
{
this
.
organizationId
=
organizationId
==
null
?
null
:
organizationId
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.project_id
*
* @return the value of data_validate_log.project_id
*
* @mbg.generated
*/
public
String
getProjectId
()
{
return
projectId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.project_id
*
* @param projectId the value for data_validate_log.project_id
*
* @mbg.generated
*/
public
void
setProjectId
(
String
projectId
)
{
this
.
projectId
=
projectId
==
null
?
null
:
projectId
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.company_code
*
* @return the value of data_validate_log.company_code
*
* @mbg.generated
*/
public
String
getCompanyCode
()
{
return
companyCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.company_code
*
* @param companyCode the value for data_validate_log.company_code
*
* @mbg.generated
*/
public
void
setCompanyCode
(
String
companyCode
)
{
this
.
companyCode
=
companyCode
==
null
?
null
:
companyCode
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.company_name
*
* @return the value of data_validate_log.company_name
*
* @mbg.generated
*/
public
String
getCompanyName
()
{
return
companyName
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.company_name
*
* @param companyName the value for data_validate_log.company_name
*
* @mbg.generated
*/
public
void
setCompanyName
(
String
companyName
)
{
this
.
companyName
=
companyName
==
null
?
null
:
companyName
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.tms_period
*
* @return the value of data_validate_log.tms_period
*
* @mbg.generated
*/
public
Integer
getTmsPeriod
()
{
return
tmsPeriod
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.tms_period
*
* @param tmsPeriod the value for data_validate_log.tms_period
*
* @mbg.generated
*/
public
void
setTmsPeriod
(
Integer
tmsPeriod
)
{
this
.
tmsPeriod
=
tmsPeriod
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.period
*
* @return the value of data_validate_log.period
*
* @mbg.generated
*/
public
Integer
getPeriod
()
{
return
period
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.period
*
* @param period the value for data_validate_log.period
*
* @mbg.generated
*/
public
void
setPeriod
(
Integer
period
)
{
this
.
period
=
period
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.validate_content
*
* @return the value of data_validate_log.validate_content
*
* @mbg.generated
*/
public
String
getValidateContent
()
{
return
validateContent
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.validate_content
*
* @param validateContent the value for data_validate_log.validate_content
*
* @mbg.generated
*/
public
void
setValidateContent
(
String
validateContent
)
{
this
.
validateContent
=
validateContent
==
null
?
null
:
validateContent
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.validate_result
*
* @return the value of data_validate_log.validate_result
*
* @mbg.generated
*/
public
String
getValidateResult
()
{
return
validateResult
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.validate_result
*
* @param validateResult the value for data_validate_log.validate_result
*
* @mbg.generated
*/
public
void
setValidateResult
(
String
validateResult
)
{
this
.
validateResult
=
validateResult
==
null
?
null
:
validateResult
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.result
*
* @return the value of data_validate_log.result
*
* @mbg.generated
*/
public
String
getResult
()
{
return
result
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.result
*
* @param result the value for data_validate_log.result
*
* @mbg.generated
*/
public
void
setResult
(
String
result
)
{
this
.
result
=
result
==
null
?
null
:
result
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.validate_user
*
* @return the value of data_validate_log.validate_user
*
* @mbg.generated
*/
public
String
getValidateUser
()
{
return
validateUser
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.validate_user
*
* @param validateUser the value for data_validate_log.validate_user
*
* @mbg.generated
*/
public
void
setValidateUser
(
String
validateUser
)
{
this
.
validateUser
=
validateUser
==
null
?
null
:
validateUser
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.create_time
*
* @return the value of data_validate_log.create_time
*
* @mbg.generated
*/
public
Date
getCreateTime
()
{
return
createTime
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.create_time
*
* @param createTime the value for data_validate_log.create_time
*
* @mbg.generated
*/
public
void
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.update_time
*
* @return the value of data_validate_log.update_time
*
* @mbg.generated
*/
public
Date
getUpdateTime
()
{
return
updateTime
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.update_time
*
* @param updateTime the value for data_validate_log.update_time
*
* @mbg.generated
*/
public
void
setUpdateTime
(
Date
updateTime
)
{
this
.
updateTime
=
updateTime
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
@Override
public
String
toString
()
{
StringBuilder
sb
=
new
StringBuilder
();
sb
.
append
(
getClass
().
getSimpleName
());
sb
.
append
(
" ["
);
sb
.
append
(
"Hash = "
).
append
(
hashCode
());
sb
.
append
(
", id="
).
append
(
id
);
sb
.
append
(
", organizationId="
).
append
(
organizationId
);
sb
.
append
(
", projectId="
).
append
(
projectId
);
sb
.
append
(
", companyCode="
).
append
(
companyCode
);
sb
.
append
(
", companyName="
).
append
(
companyName
);
sb
.
append
(
", tmsPeriod="
).
append
(
tmsPeriod
);
sb
.
append
(
", period="
).
append
(
period
);
sb
.
append
(
", validateContent="
).
append
(
validateContent
);
sb
.
append
(
", validateResult="
).
append
(
validateResult
);
sb
.
append
(
", result="
).
append
(
result
);
sb
.
append
(
", validateUser="
).
append
(
validateUser
);
sb
.
append
(
", createTime="
).
append
(
createTime
);
sb
.
append
(
", updateTime="
).
append
(
updateTime
);
sb
.
append
(
"]"
);
return
sb
.
toString
();
}
}
\ No newline at end of file
atms-api/src/main/java/pwc/taxtech/atms/service/impl/DataImportService.java
View file @
8d2b4f76
...
...
@@ -23,8 +23,10 @@ import pwc.taxtech.atms.dao.*;
import
pwc.taxtech.atms.dpo.OrgSelectDto
;
import
pwc.taxtech.atms.dto.DataExtractParam
;
import
pwc.taxtech.atms.dto.DataImportLogDto
;
import
pwc.taxtech.atms.dto.DataValidateLogDto
;
import
pwc.taxtech.atms.dto.OperationResultDto
;
import
pwc.taxtech.atms.dto.dataimport.DataImportParam
;
import
pwc.taxtech.atms.dto.dataimport.DataProcessParam
;
import
pwc.taxtech.atms.dto.vatdto.TrialBalanceDto
;
import
pwc.taxtech.atms.dto.vatdto.TrialBalanceParam
;
import
pwc.taxtech.atms.entity.*
;
...
...
@@ -55,6 +57,8 @@ public class DataImportService extends BaseService {
@Resource
private
DataImportLogMapper
dataImportLogMapper
;
@Resource
private
DataValidateLogMapper
dataValidateLogMapper
;
@Resource
private
ProfitLossStatementMapper
profitLossStatementMapper
;
@Resource
private
BalanceSheetManualMapper
balanceSheetManualMapper
;
...
...
@@ -1628,7 +1632,6 @@ public class DataImportService extends BaseService {
return
res
;
}
/**
* 25/02/2019 18:52
*
...
...
@@ -1662,6 +1665,35 @@ public class DataImportService extends BaseService {
return
pageInfo
;
}
/**
* 25/02/2019 18:52
*
* [type]
* @author Gary J Li
* @return
*
*/
public
PageInfo
<
DataValidateLogDto
>
displayProcessLog
(
DataProcessParam
param
)
{
DataValidateLogExample
example
=
new
DataValidateLogExample
();
DataValidateLogExample
.
Criteria
criteria
=
example
.
createCriteria
();
Page
page
=
PageHelper
.
startPage
(
param
.
getPageInfo
().
getPageIndex
(),
param
.
getPageInfo
().
getPageSize
());
List
<
String
>
orgIds
=
organizationService
.
getMyOrgList
().
stream
().
map
(
OrgSelectDto:
:
getId
).
collect
(
Collectors
.
toList
());
// 这里会导致任何人都可以看到未映射到主体的数据
orgIds
.
add
(
""
);
criteria
.
andOrganizationIdIn
(
orgIds
);
example
.
setOrderByClause
(
"update_time desc"
);
PageInfo
<
DataValidateLogDto
>
pageInfo
=
new
PageInfo
<>(
dataValidateLogMapper
.
selectByExample
(
example
).
stream
()
.
map
(
o
->
beanUtil
.
copyProperties
(
o
,
new
DataValidateLogDto
())).
collect
(
Collectors
.
toList
()));
pageInfo
.
setTotal
(
page
.
getTotal
());
return
pageInfo
;
}
public
OperationResultDto
callExtractFinancialData
(
DataExtractParam
dataExtractParam
)
{
// todo 调用滴滴的http财务数据抽取调用接口 List<String> codes, Integer period, List<Integer> dataTypes
OrganizationExample
example
=
new
OrganizationExample
();
...
...
atms-dao/src/main/java/pwc/taxtech/atms/dao/DataValidateLogMapper.java
0 → 100644
View file @
8d2b4f76
package
pwc
.
taxtech
.
atms
.
dao
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.session.RowBounds
;
import
pwc.taxtech.atms.MyMapper
;
import
pwc.taxtech.atms.entity.DataValidateLog
;
import
pwc.taxtech.atms.entity.DataValidateLogExample
;
@Mapper
public
interface
DataValidateLogMapper
extends
MyMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
long
countByExample
(
DataValidateLogExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
int
deleteByExample
(
DataValidateLogExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
int
deleteByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
int
insert
(
DataValidateLog
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
int
insertSelective
(
DataValidateLog
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
List
<
DataValidateLog
>
selectByExampleWithRowbounds
(
DataValidateLogExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
List
<
DataValidateLog
>
selectByExample
(
DataValidateLogExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
DataValidateLog
selectByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
DataValidateLog
record
,
@Param
(
"example"
)
DataValidateLogExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
DataValidateLog
record
,
@Param
(
"example"
)
DataValidateLogExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
DataValidateLog
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
DataValidateLog
record
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/entity/DataValidateLog.java
0 → 100644
View file @
8d2b4f76
package
pwc
.
taxtech
.
atms
.
entity
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table data_validate_log
*
* @mbg.generated do_not_delete_during_merge
*/
public
class
DataValidateLog
extends
BaseEntity
implements
Serializable
{
/**
* Database Column Remarks:
* 唯一编号
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.id
*
* @mbg.generated
*/
private
Long
id
;
/**
* Database Column Remarks:
* 机构ID
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.organization_id
*
* @mbg.generated
*/
private
String
organizationId
;
/**
* Database Column Remarks:
* 项目编号
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.project_id
*
* @mbg.generated
*/
private
String
projectId
;
/**
* Database Column Remarks:
* 机构代码 org code
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.company_code
*
* @mbg.generated
*/
private
String
companyCode
;
/**
* Database Column Remarks:
* 公司名称 org name
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.company_name
*
* @mbg.generated
*/
private
String
companyName
;
/**
* Database Column Remarks:
* 税务系统期间 yyyyMM 201901-201912
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.tms_period
*
* @mbg.generated
*/
private
Integer
tmsPeriod
;
/**
* Database Column Remarks:
* 期间yyyyMM 201901-201913
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.period
*
* @mbg.generated
*/
private
Integer
period
;
/**
* Database Column Remarks:
* 校验内容
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.validate_content
*
* @mbg.generated
*/
private
String
validateContent
;
/**
* Database Column Remarks:
* 校验结果(end or error )
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.validate_result
*
* @mbg.generated
*/
private
String
validateResult
;
/**
* Database Column Remarks:
* 结果信息
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.result
*
* @mbg.generated
*/
private
String
result
;
/**
* Database Column Remarks:
* 校验人
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.validate_user
*
* @mbg.generated
*/
private
String
validateUser
;
/**
* Database Column Remarks:
* 创建时间
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.create_time
*
* @mbg.generated
*/
private
Date
createTime
;
/**
* Database Column Remarks:
* 更新时间
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column data_validate_log.update_time
*
* @mbg.generated
*/
private
Date
updateTime
;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table data_validate_log
*
* @mbg.generated
*/
private
static
final
long
serialVersionUID
=
1L
;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.id
*
* @return the value of data_validate_log.id
*
* @mbg.generated
*/
public
Long
getId
()
{
return
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.id
*
* @param id the value for data_validate_log.id
*
* @mbg.generated
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.organization_id
*
* @return the value of data_validate_log.organization_id
*
* @mbg.generated
*/
public
String
getOrganizationId
()
{
return
organizationId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.organization_id
*
* @param organizationId the value for data_validate_log.organization_id
*
* @mbg.generated
*/
public
void
setOrganizationId
(
String
organizationId
)
{
this
.
organizationId
=
organizationId
==
null
?
null
:
organizationId
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.project_id
*
* @return the value of data_validate_log.project_id
*
* @mbg.generated
*/
public
String
getProjectId
()
{
return
projectId
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.project_id
*
* @param projectId the value for data_validate_log.project_id
*
* @mbg.generated
*/
public
void
setProjectId
(
String
projectId
)
{
this
.
projectId
=
projectId
==
null
?
null
:
projectId
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.company_code
*
* @return the value of data_validate_log.company_code
*
* @mbg.generated
*/
public
String
getCompanyCode
()
{
return
companyCode
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.company_code
*
* @param companyCode the value for data_validate_log.company_code
*
* @mbg.generated
*/
public
void
setCompanyCode
(
String
companyCode
)
{
this
.
companyCode
=
companyCode
==
null
?
null
:
companyCode
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.company_name
*
* @return the value of data_validate_log.company_name
*
* @mbg.generated
*/
public
String
getCompanyName
()
{
return
companyName
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.company_name
*
* @param companyName the value for data_validate_log.company_name
*
* @mbg.generated
*/
public
void
setCompanyName
(
String
companyName
)
{
this
.
companyName
=
companyName
==
null
?
null
:
companyName
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.tms_period
*
* @return the value of data_validate_log.tms_period
*
* @mbg.generated
*/
public
Integer
getTmsPeriod
()
{
return
tmsPeriod
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.tms_period
*
* @param tmsPeriod the value for data_validate_log.tms_period
*
* @mbg.generated
*/
public
void
setTmsPeriod
(
Integer
tmsPeriod
)
{
this
.
tmsPeriod
=
tmsPeriod
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.period
*
* @return the value of data_validate_log.period
*
* @mbg.generated
*/
public
Integer
getPeriod
()
{
return
period
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.period
*
* @param period the value for data_validate_log.period
*
* @mbg.generated
*/
public
void
setPeriod
(
Integer
period
)
{
this
.
period
=
period
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.validate_content
*
* @return the value of data_validate_log.validate_content
*
* @mbg.generated
*/
public
String
getValidateContent
()
{
return
validateContent
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.validate_content
*
* @param validateContent the value for data_validate_log.validate_content
*
* @mbg.generated
*/
public
void
setValidateContent
(
String
validateContent
)
{
this
.
validateContent
=
validateContent
==
null
?
null
:
validateContent
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.validate_result
*
* @return the value of data_validate_log.validate_result
*
* @mbg.generated
*/
public
String
getValidateResult
()
{
return
validateResult
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.validate_result
*
* @param validateResult the value for data_validate_log.validate_result
*
* @mbg.generated
*/
public
void
setValidateResult
(
String
validateResult
)
{
this
.
validateResult
=
validateResult
==
null
?
null
:
validateResult
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.result
*
* @return the value of data_validate_log.result
*
* @mbg.generated
*/
public
String
getResult
()
{
return
result
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.result
*
* @param result the value for data_validate_log.result
*
* @mbg.generated
*/
public
void
setResult
(
String
result
)
{
this
.
result
=
result
==
null
?
null
:
result
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.validate_user
*
* @return the value of data_validate_log.validate_user
*
* @mbg.generated
*/
public
String
getValidateUser
()
{
return
validateUser
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.validate_user
*
* @param validateUser the value for data_validate_log.validate_user
*
* @mbg.generated
*/
public
void
setValidateUser
(
String
validateUser
)
{
this
.
validateUser
=
validateUser
==
null
?
null
:
validateUser
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.create_time
*
* @return the value of data_validate_log.create_time
*
* @mbg.generated
*/
public
Date
getCreateTime
()
{
return
createTime
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.create_time
*
* @param createTime the value for data_validate_log.create_time
*
* @mbg.generated
*/
public
void
setCreateTime
(
Date
createTime
)
{
this
.
createTime
=
createTime
;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column data_validate_log.update_time
*
* @return the value of data_validate_log.update_time
*
* @mbg.generated
*/
public
Date
getUpdateTime
()
{
return
updateTime
;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column data_validate_log.update_time
*
* @param updateTime the value for data_validate_log.update_time
*
* @mbg.generated
*/
public
void
setUpdateTime
(
Date
updateTime
)
{
this
.
updateTime
=
updateTime
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
@Override
public
String
toString
()
{
StringBuilder
sb
=
new
StringBuilder
();
sb
.
append
(
getClass
().
getSimpleName
());
sb
.
append
(
" ["
);
sb
.
append
(
"Hash = "
).
append
(
hashCode
());
sb
.
append
(
", id="
).
append
(
id
);
sb
.
append
(
", organizationId="
).
append
(
organizationId
);
sb
.
append
(
", projectId="
).
append
(
projectId
);
sb
.
append
(
", companyCode="
).
append
(
companyCode
);
sb
.
append
(
", companyName="
).
append
(
companyName
);
sb
.
append
(
", tmsPeriod="
).
append
(
tmsPeriod
);
sb
.
append
(
", period="
).
append
(
period
);
sb
.
append
(
", validateContent="
).
append
(
validateContent
);
sb
.
append
(
", validateResult="
).
append
(
validateResult
);
sb
.
append
(
", result="
).
append
(
result
);
sb
.
append
(
", validateUser="
).
append
(
validateUser
);
sb
.
append
(
", createTime="
).
append
(
createTime
);
sb
.
append
(
", updateTime="
).
append
(
updateTime
);
sb
.
append
(
"]"
);
return
sb
.
toString
();
}
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/entity/DataValidateLogExample.java
0 → 100644
View file @
8d2b4f76
package
pwc
.
taxtech
.
atms
.
entity
;
import
java.util.ArrayList
;
import
java.util.Date
;
import
java.util.List
;
public
class
DataValidateLogExample
{
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table data_validate_log
*
* @mbg.generated
*/
protected
String
orderByClause
;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table data_validate_log
*
* @mbg.generated
*/
protected
boolean
distinct
;
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table data_validate_log
*
* @mbg.generated
*/
protected
List
<
Criteria
>
oredCriteria
;
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
public
DataValidateLogExample
()
{
oredCriteria
=
new
ArrayList
<
Criteria
>();
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
public
void
setOrderByClause
(
String
orderByClause
)
{
this
.
orderByClause
=
orderByClause
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
public
String
getOrderByClause
()
{
return
orderByClause
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
public
void
setDistinct
(
boolean
distinct
)
{
this
.
distinct
=
distinct
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
public
boolean
isDistinct
()
{
return
distinct
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
public
List
<
Criteria
>
getOredCriteria
()
{
return
oredCriteria
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
public
void
or
(
Criteria
criteria
)
{
oredCriteria
.
add
(
criteria
);
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
public
Criteria
or
()
{
Criteria
criteria
=
createCriteriaInternal
();
oredCriteria
.
add
(
criteria
);
return
criteria
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
public
Criteria
createCriteria
()
{
Criteria
criteria
=
createCriteriaInternal
();
if
(
oredCriteria
.
size
()
==
0
)
{
oredCriteria
.
add
(
criteria
);
}
return
criteria
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
protected
Criteria
createCriteriaInternal
()
{
Criteria
criteria
=
new
Criteria
();
return
criteria
;
}
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table data_validate_log
*
* @mbg.generated
*/
public
void
clear
()
{
oredCriteria
.
clear
();
orderByClause
=
null
;
distinct
=
false
;
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table data_validate_log
*
* @mbg.generated
*/
protected
abstract
static
class
GeneratedCriteria
{
protected
List
<
Criterion
>
criteria
;
protected
GeneratedCriteria
()
{
super
();
criteria
=
new
ArrayList
<
Criterion
>();
}
public
boolean
isValid
()
{
return
criteria
.
size
()
>
0
;
}
public
List
<
Criterion
>
getAllCriteria
()
{
return
criteria
;
}
public
List
<
Criterion
>
getCriteria
()
{
return
criteria
;
}
protected
void
addCriterion
(
String
condition
)
{
if
(
condition
==
null
)
{
throw
new
RuntimeException
(
"Value for condition cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
));
}
protected
void
addCriterion
(
String
condition
,
Object
value
,
String
property
)
{
if
(
value
==
null
)
{
throw
new
RuntimeException
(
"Value for "
+
property
+
" cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
,
value
));
}
protected
void
addCriterion
(
String
condition
,
Object
value1
,
Object
value2
,
String
property
)
{
if
(
value1
==
null
||
value2
==
null
)
{
throw
new
RuntimeException
(
"Between values for "
+
property
+
" cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
,
value1
,
value2
));
}
public
Criteria
andIdIsNull
()
{
addCriterion
(
"id is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdIsNotNull
()
{
addCriterion
(
"id is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andIdEqualTo
(
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
andOrganizationIdIsNull
()
{
addCriterion
(
"organization_id is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrganizationIdIsNotNull
()
{
addCriterion
(
"organization_id is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrganizationIdEqualTo
(
String
value
)
{
addCriterion
(
"organization_id ="
,
value
,
"organizationId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrganizationIdNotEqualTo
(
String
value
)
{
addCriterion
(
"organization_id <>"
,
value
,
"organizationId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrganizationIdGreaterThan
(
String
value
)
{
addCriterion
(
"organization_id >"
,
value
,
"organizationId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrganizationIdGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"organization_id >="
,
value
,
"organizationId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrganizationIdLessThan
(
String
value
)
{
addCriterion
(
"organization_id <"
,
value
,
"organizationId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrganizationIdLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"organization_id <="
,
value
,
"organizationId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrganizationIdLike
(
String
value
)
{
addCriterion
(
"organization_id like"
,
value
,
"organizationId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrganizationIdNotLike
(
String
value
)
{
addCriterion
(
"organization_id not like"
,
value
,
"organizationId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrganizationIdIn
(
List
<
String
>
values
)
{
addCriterion
(
"organization_id in"
,
values
,
"organizationId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrganizationIdNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"organization_id not in"
,
values
,
"organizationId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrganizationIdBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"organization_id between"
,
value1
,
value2
,
"organizationId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andOrganizationIdNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"organization_id not between"
,
value1
,
value2
,
"organizationId"
);
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
(
String
value
)
{
addCriterion
(
"project_id ="
,
value
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdNotEqualTo
(
String
value
)
{
addCriterion
(
"project_id <>"
,
value
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdGreaterThan
(
String
value
)
{
addCriterion
(
"project_id >"
,
value
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"project_id >="
,
value
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdLessThan
(
String
value
)
{
addCriterion
(
"project_id <"
,
value
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"project_id <="
,
value
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdLike
(
String
value
)
{
addCriterion
(
"project_id like"
,
value
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdNotLike
(
String
value
)
{
addCriterion
(
"project_id not like"
,
value
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdIn
(
List
<
String
>
values
)
{
addCriterion
(
"project_id in"
,
values
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"project_id not in"
,
values
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"project_id between"
,
value1
,
value2
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andProjectIdNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"project_id not between"
,
value1
,
value2
,
"projectId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyCodeIsNull
()
{
addCriterion
(
"company_code is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyCodeIsNotNull
()
{
addCriterion
(
"company_code is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyCodeEqualTo
(
String
value
)
{
addCriterion
(
"company_code ="
,
value
,
"companyCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyCodeNotEqualTo
(
String
value
)
{
addCriterion
(
"company_code <>"
,
value
,
"companyCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyCodeGreaterThan
(
String
value
)
{
addCriterion
(
"company_code >"
,
value
,
"companyCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyCodeGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"company_code >="
,
value
,
"companyCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyCodeLessThan
(
String
value
)
{
addCriterion
(
"company_code <"
,
value
,
"companyCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyCodeLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"company_code <="
,
value
,
"companyCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyCodeLike
(
String
value
)
{
addCriterion
(
"company_code like"
,
value
,
"companyCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyCodeNotLike
(
String
value
)
{
addCriterion
(
"company_code not like"
,
value
,
"companyCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyCodeIn
(
List
<
String
>
values
)
{
addCriterion
(
"company_code in"
,
values
,
"companyCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyCodeNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"company_code not in"
,
values
,
"companyCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyCodeBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"company_code between"
,
value1
,
value2
,
"companyCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyCodeNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"company_code not between"
,
value1
,
value2
,
"companyCode"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNameIsNull
()
{
addCriterion
(
"company_name is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNameIsNotNull
()
{
addCriterion
(
"company_name is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNameEqualTo
(
String
value
)
{
addCriterion
(
"company_name ="
,
value
,
"companyName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNameNotEqualTo
(
String
value
)
{
addCriterion
(
"company_name <>"
,
value
,
"companyName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNameGreaterThan
(
String
value
)
{
addCriterion
(
"company_name >"
,
value
,
"companyName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNameGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"company_name >="
,
value
,
"companyName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNameLessThan
(
String
value
)
{
addCriterion
(
"company_name <"
,
value
,
"companyName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNameLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"company_name <="
,
value
,
"companyName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNameLike
(
String
value
)
{
addCriterion
(
"company_name like"
,
value
,
"companyName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNameNotLike
(
String
value
)
{
addCriterion
(
"company_name not like"
,
value
,
"companyName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNameIn
(
List
<
String
>
values
)
{
addCriterion
(
"company_name in"
,
values
,
"companyName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNameNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"company_name not in"
,
values
,
"companyName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNameBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"company_name between"
,
value1
,
value2
,
"companyName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCompanyNameNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"company_name not between"
,
value1
,
value2
,
"companyName"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTmsPeriodIsNull
()
{
addCriterion
(
"tms_period is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTmsPeriodIsNotNull
()
{
addCriterion
(
"tms_period is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTmsPeriodEqualTo
(
Integer
value
)
{
addCriterion
(
"tms_period ="
,
value
,
"tmsPeriod"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTmsPeriodNotEqualTo
(
Integer
value
)
{
addCriterion
(
"tms_period <>"
,
value
,
"tmsPeriod"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTmsPeriodGreaterThan
(
Integer
value
)
{
addCriterion
(
"tms_period >"
,
value
,
"tmsPeriod"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTmsPeriodGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"tms_period >="
,
value
,
"tmsPeriod"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTmsPeriodLessThan
(
Integer
value
)
{
addCriterion
(
"tms_period <"
,
value
,
"tmsPeriod"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTmsPeriodLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"tms_period <="
,
value
,
"tmsPeriod"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTmsPeriodIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"tms_period in"
,
values
,
"tmsPeriod"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTmsPeriodNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"tms_period not in"
,
values
,
"tmsPeriod"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTmsPeriodBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"tms_period between"
,
value1
,
value2
,
"tmsPeriod"
);
return
(
Criteria
)
this
;
}
public
Criteria
andTmsPeriodNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"tms_period not between"
,
value1
,
value2
,
"tmsPeriod"
);
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
andValidateContentIsNull
()
{
addCriterion
(
"validate_content is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateContentIsNotNull
()
{
addCriterion
(
"validate_content is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateContentEqualTo
(
String
value
)
{
addCriterion
(
"validate_content ="
,
value
,
"validateContent"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateContentNotEqualTo
(
String
value
)
{
addCriterion
(
"validate_content <>"
,
value
,
"validateContent"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateContentGreaterThan
(
String
value
)
{
addCriterion
(
"validate_content >"
,
value
,
"validateContent"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateContentGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"validate_content >="
,
value
,
"validateContent"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateContentLessThan
(
String
value
)
{
addCriterion
(
"validate_content <"
,
value
,
"validateContent"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateContentLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"validate_content <="
,
value
,
"validateContent"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateContentLike
(
String
value
)
{
addCriterion
(
"validate_content like"
,
value
,
"validateContent"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateContentNotLike
(
String
value
)
{
addCriterion
(
"validate_content not like"
,
value
,
"validateContent"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateContentIn
(
List
<
String
>
values
)
{
addCriterion
(
"validate_content in"
,
values
,
"validateContent"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateContentNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"validate_content not in"
,
values
,
"validateContent"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateContentBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"validate_content between"
,
value1
,
value2
,
"validateContent"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateContentNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"validate_content not between"
,
value1
,
value2
,
"validateContent"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateResultIsNull
()
{
addCriterion
(
"validate_result is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateResultIsNotNull
()
{
addCriterion
(
"validate_result is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateResultEqualTo
(
String
value
)
{
addCriterion
(
"validate_result ="
,
value
,
"validateResult"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateResultNotEqualTo
(
String
value
)
{
addCriterion
(
"validate_result <>"
,
value
,
"validateResult"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateResultGreaterThan
(
String
value
)
{
addCriterion
(
"validate_result >"
,
value
,
"validateResult"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateResultGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"validate_result >="
,
value
,
"validateResult"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateResultLessThan
(
String
value
)
{
addCriterion
(
"validate_result <"
,
value
,
"validateResult"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateResultLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"validate_result <="
,
value
,
"validateResult"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateResultLike
(
String
value
)
{
addCriterion
(
"validate_result like"
,
value
,
"validateResult"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateResultNotLike
(
String
value
)
{
addCriterion
(
"validate_result not like"
,
value
,
"validateResult"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateResultIn
(
List
<
String
>
values
)
{
addCriterion
(
"validate_result in"
,
values
,
"validateResult"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateResultNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"validate_result not in"
,
values
,
"validateResult"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateResultBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"validate_result between"
,
value1
,
value2
,
"validateResult"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateResultNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"validate_result not between"
,
value1
,
value2
,
"validateResult"
);
return
(
Criteria
)
this
;
}
public
Criteria
andResultIsNull
()
{
addCriterion
(
"result is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andResultIsNotNull
()
{
addCriterion
(
"result is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andResultEqualTo
(
String
value
)
{
addCriterion
(
"result ="
,
value
,
"result"
);
return
(
Criteria
)
this
;
}
public
Criteria
andResultNotEqualTo
(
String
value
)
{
addCriterion
(
"result <>"
,
value
,
"result"
);
return
(
Criteria
)
this
;
}
public
Criteria
andResultGreaterThan
(
String
value
)
{
addCriterion
(
"result >"
,
value
,
"result"
);
return
(
Criteria
)
this
;
}
public
Criteria
andResultGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"result >="
,
value
,
"result"
);
return
(
Criteria
)
this
;
}
public
Criteria
andResultLessThan
(
String
value
)
{
addCriterion
(
"result <"
,
value
,
"result"
);
return
(
Criteria
)
this
;
}
public
Criteria
andResultLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"result <="
,
value
,
"result"
);
return
(
Criteria
)
this
;
}
public
Criteria
andResultLike
(
String
value
)
{
addCriterion
(
"result like"
,
value
,
"result"
);
return
(
Criteria
)
this
;
}
public
Criteria
andResultNotLike
(
String
value
)
{
addCriterion
(
"result not like"
,
value
,
"result"
);
return
(
Criteria
)
this
;
}
public
Criteria
andResultIn
(
List
<
String
>
values
)
{
addCriterion
(
"result in"
,
values
,
"result"
);
return
(
Criteria
)
this
;
}
public
Criteria
andResultNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"result not in"
,
values
,
"result"
);
return
(
Criteria
)
this
;
}
public
Criteria
andResultBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"result between"
,
value1
,
value2
,
"result"
);
return
(
Criteria
)
this
;
}
public
Criteria
andResultNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"result not between"
,
value1
,
value2
,
"result"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateUserIsNull
()
{
addCriterion
(
"validate_user is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateUserIsNotNull
()
{
addCriterion
(
"validate_user is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateUserEqualTo
(
String
value
)
{
addCriterion
(
"validate_user ="
,
value
,
"validateUser"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateUserNotEqualTo
(
String
value
)
{
addCriterion
(
"validate_user <>"
,
value
,
"validateUser"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateUserGreaterThan
(
String
value
)
{
addCriterion
(
"validate_user >"
,
value
,
"validateUser"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateUserGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"validate_user >="
,
value
,
"validateUser"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateUserLessThan
(
String
value
)
{
addCriterion
(
"validate_user <"
,
value
,
"validateUser"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateUserLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"validate_user <="
,
value
,
"validateUser"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateUserLike
(
String
value
)
{
addCriterion
(
"validate_user like"
,
value
,
"validateUser"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateUserNotLike
(
String
value
)
{
addCriterion
(
"validate_user not like"
,
value
,
"validateUser"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateUserIn
(
List
<
String
>
values
)
{
addCriterion
(
"validate_user in"
,
values
,
"validateUser"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateUserNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"validate_user not in"
,
values
,
"validateUser"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateUserBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"validate_user between"
,
value1
,
value2
,
"validateUser"
);
return
(
Criteria
)
this
;
}
public
Criteria
andValidateUserNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"validate_user not between"
,
value1
,
value2
,
"validateUser"
);
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
;
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table data_validate_log
*
* @mbg.generated do_not_delete_during_merge
*/
public
static
class
Criteria
extends
GeneratedCriteria
{
protected
Criteria
()
{
super
();
}
}
/**
* This class was generated by MyBatis Generator.
* This class corresponds to the database table data_validate_log
*
* @mbg.generated
*/
public
static
class
Criterion
{
private
String
condition
;
private
Object
value
;
private
Object
secondValue
;
private
boolean
noValue
;
private
boolean
singleValue
;
private
boolean
betweenValue
;
private
boolean
listValue
;
private
String
typeHandler
;
public
String
getCondition
()
{
return
condition
;
}
public
Object
getValue
()
{
return
value
;
}
public
Object
getSecondValue
()
{
return
secondValue
;
}
public
boolean
isNoValue
()
{
return
noValue
;
}
public
boolean
isSingleValue
()
{
return
singleValue
;
}
public
boolean
isBetweenValue
()
{
return
betweenValue
;
}
public
boolean
isListValue
()
{
return
listValue
;
}
public
String
getTypeHandler
()
{
return
typeHandler
;
}
protected
Criterion
(
String
condition
)
{
super
();
this
.
condition
=
condition
;
this
.
typeHandler
=
null
;
this
.
noValue
=
true
;
}
protected
Criterion
(
String
condition
,
Object
value
,
String
typeHandler
)
{
super
();
this
.
condition
=
condition
;
this
.
value
=
value
;
this
.
typeHandler
=
typeHandler
;
if
(
value
instanceof
List
<?>)
{
this
.
listValue
=
true
;
}
else
{
this
.
singleValue
=
true
;
}
}
protected
Criterion
(
String
condition
,
Object
value
)
{
this
(
condition
,
value
,
null
);
}
protected
Criterion
(
String
condition
,
Object
value
,
Object
secondValue
,
String
typeHandler
)
{
super
();
this
.
condition
=
condition
;
this
.
value
=
value
;
this
.
secondValue
=
secondValue
;
this
.
typeHandler
=
typeHandler
;
this
.
betweenValue
=
true
;
}
protected
Criterion
(
String
condition
,
Object
value
,
Object
secondValue
)
{
this
(
condition
,
value
,
secondValue
,
null
);
}
}
}
\ No newline at end of file
atms-dao/src/main/resources/pwc/taxtech/atms/dao/DataValidateLogMapper.xml
0 → 100644
View file @
8d2b4f76
<?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.DataValidateLogMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"pwc.taxtech.atms.entity.DataValidateLog"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<id
column=
"id"
jdbcType=
"BIGINT"
property=
"id"
/>
<result
column=
"organization_id"
jdbcType=
"VARCHAR"
property=
"organizationId"
/>
<result
column=
"project_id"
jdbcType=
"VARCHAR"
property=
"projectId"
/>
<result
column=
"company_code"
jdbcType=
"VARCHAR"
property=
"companyCode"
/>
<result
column=
"company_name"
jdbcType=
"VARCHAR"
property=
"companyName"
/>
<result
column=
"tms_period"
jdbcType=
"INTEGER"
property=
"tmsPeriod"
/>
<result
column=
"period"
jdbcType=
"INTEGER"
property=
"period"
/>
<result
column=
"validate_content"
jdbcType=
"VARCHAR"
property=
"validateContent"
/>
<result
column=
"validate_result"
jdbcType=
"VARCHAR"
property=
"validateResult"
/>
<result
column=
"result"
jdbcType=
"VARCHAR"
property=
"result"
/>
<result
column=
"validate_user"
jdbcType=
"VARCHAR"
property=
"validateUser"
/>
<result
column=
"create_time"
jdbcType=
"TIMESTAMP"
property=
"createTime"
/>
<result
column=
"update_time"
jdbcType=
"TIMESTAMP"
property=
"updateTime"
/>
</resultMap>
<sql
id=
"Example_Where_Clause"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<where>
<foreach
collection=
"oredCriteria"
item=
"criteria"
separator=
"or"
>
<if
test=
"criteria.valid"
>
<trim
prefix=
"("
prefixOverrides=
"and"
suffix=
")"
>
<foreach
collection=
"criteria.criteria"
item=
"criterion"
>
<choose>
<when
test=
"criterion.noValue"
>
and ${criterion.condition}
</when>
<when
test=
"criterion.singleValue"
>
and ${criterion.condition} #{criterion.value}
</when>
<when
test=
"criterion.betweenValue"
>
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when
test=
"criterion.listValue"
>
and ${criterion.condition}
<foreach
close=
")"
collection=
"criterion.value"
item=
"listItem"
open=
"("
separator=
","
>
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql
id=
"Update_By_Example_Where_Clause"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
<where>
<foreach
collection=
"example.oredCriteria"
item=
"criteria"
separator=
"or"
>
<if
test=
"criteria.valid"
>
<trim
prefix=
"("
prefixOverrides=
"and"
suffix=
")"
>
<foreach
collection=
"criteria.criteria"
item=
"criterion"
>
<choose>
<when
test=
"criterion.noValue"
>
and ${criterion.condition}
</when>
<when
test=
"criterion.singleValue"
>
and ${criterion.condition} #{criterion.value}
</when>
<when
test=
"criterion.betweenValue"
>
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when
test=
"criterion.listValue"
>
and ${criterion.condition}
<foreach
close=
")"
collection=
"criterion.value"
item=
"listItem"
open=
"("
separator=
","
>
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql
id=
"Base_Column_List"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
id, organization_id, project_id, company_code, company_name, tms_period, period,
validate_content, validate_result, result, validate_user, create_time, update_time
</sql>
<select
id=
"selectByExample"
parameterType=
"pwc.taxtech.atms.entity.DataValidateLogExample"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
from data_validate_log
<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"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
select
<include
refid=
"Base_Column_List"
/>
from data_validate_log
where id = #{id,jdbcType=BIGINT}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
delete from data_validate_log
where id = #{id,jdbcType=BIGINT}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"pwc.taxtech.atms.entity.DataValidateLogExample"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
delete from data_validate_log
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"pwc.taxtech.atms.entity.DataValidateLog"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
insert into data_validate_log (id, organization_id, project_id,
company_code, company_name, tms_period,
period, validate_content, validate_result,
result, validate_user, create_time,
update_time)
values (#{id,jdbcType=BIGINT}, #{organizationId,jdbcType=VARCHAR}, #{projectId,jdbcType=VARCHAR},
#{companyCode,jdbcType=VARCHAR}, #{companyName,jdbcType=VARCHAR}, #{tmsPeriod,jdbcType=INTEGER},
#{period,jdbcType=INTEGER}, #{validateContent,jdbcType=VARCHAR}, #{validateResult,jdbcType=VARCHAR},
#{result,jdbcType=VARCHAR}, #{validateUser,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
#{updateTime,jdbcType=TIMESTAMP})
</insert>
<insert
id=
"insertSelective"
parameterType=
"pwc.taxtech.atms.entity.DataValidateLog"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
insert into data_validate_log
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"organizationId != null"
>
organization_id,
</if>
<if
test=
"projectId != null"
>
project_id,
</if>
<if
test=
"companyCode != null"
>
company_code,
</if>
<if
test=
"companyName != null"
>
company_name,
</if>
<if
test=
"tmsPeriod != null"
>
tms_period,
</if>
<if
test=
"period != null"
>
period,
</if>
<if
test=
"validateContent != null"
>
validate_content,
</if>
<if
test=
"validateResult != null"
>
validate_result,
</if>
<if
test=
"result != null"
>
result,
</if>
<if
test=
"validateUser != null"
>
validate_user,
</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=
"organizationId != null"
>
#{organizationId,jdbcType=VARCHAR},
</if>
<if
test=
"projectId != null"
>
#{projectId,jdbcType=VARCHAR},
</if>
<if
test=
"companyCode != null"
>
#{companyCode,jdbcType=VARCHAR},
</if>
<if
test=
"companyName != null"
>
#{companyName,jdbcType=VARCHAR},
</if>
<if
test=
"tmsPeriod != null"
>
#{tmsPeriod,jdbcType=INTEGER},
</if>
<if
test=
"period != null"
>
#{period,jdbcType=INTEGER},
</if>
<if
test=
"validateContent != null"
>
#{validateContent,jdbcType=VARCHAR},
</if>
<if
test=
"validateResult != null"
>
#{validateResult,jdbcType=VARCHAR},
</if>
<if
test=
"result != null"
>
#{result,jdbcType=VARCHAR},
</if>
<if
test=
"validateUser != null"
>
#{validateUser,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.DataValidateLogExample"
resultType=
"java.lang.Long"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
select count(*) from data_validate_log
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</select>
<update
id=
"updateByExampleSelective"
parameterType=
"map"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update data_validate_log
<set>
<if
test=
"record.id != null"
>
id = #{record.id,jdbcType=BIGINT},
</if>
<if
test=
"record.organizationId != null"
>
organization_id = #{record.organizationId,jdbcType=VARCHAR},
</if>
<if
test=
"record.projectId != null"
>
project_id = #{record.projectId,jdbcType=VARCHAR},
</if>
<if
test=
"record.companyCode != null"
>
company_code = #{record.companyCode,jdbcType=VARCHAR},
</if>
<if
test=
"record.companyName != null"
>
company_name = #{record.companyName,jdbcType=VARCHAR},
</if>
<if
test=
"record.tmsPeriod != null"
>
tms_period = #{record.tmsPeriod,jdbcType=INTEGER},
</if>
<if
test=
"record.period != null"
>
period = #{record.period,jdbcType=INTEGER},
</if>
<if
test=
"record.validateContent != null"
>
validate_content = #{record.validateContent,jdbcType=VARCHAR},
</if>
<if
test=
"record.validateResult != null"
>
validate_result = #{record.validateResult,jdbcType=VARCHAR},
</if>
<if
test=
"record.result != null"
>
result = #{record.result,jdbcType=VARCHAR},
</if>
<if
test=
"record.validateUser != null"
>
validate_user = #{record.validateUser,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"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update data_validate_log
set id = #{record.id,jdbcType=BIGINT},
organization_id = #{record.organizationId,jdbcType=VARCHAR},
project_id = #{record.projectId,jdbcType=VARCHAR},
company_code = #{record.companyCode,jdbcType=VARCHAR},
company_name = #{record.companyName,jdbcType=VARCHAR},
tms_period = #{record.tmsPeriod,jdbcType=INTEGER},
period = #{record.period,jdbcType=INTEGER},
validate_content = #{record.validateContent,jdbcType=VARCHAR},
validate_result = #{record.validateResult,jdbcType=VARCHAR},
result = #{record.result,jdbcType=VARCHAR},
validate_user = #{record.validateUser,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.DataValidateLog"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update data_validate_log
<set>
<if
test=
"organizationId != null"
>
organization_id = #{organizationId,jdbcType=VARCHAR},
</if>
<if
test=
"projectId != null"
>
project_id = #{projectId,jdbcType=VARCHAR},
</if>
<if
test=
"companyCode != null"
>
company_code = #{companyCode,jdbcType=VARCHAR},
</if>
<if
test=
"companyName != null"
>
company_name = #{companyName,jdbcType=VARCHAR},
</if>
<if
test=
"tmsPeriod != null"
>
tms_period = #{tmsPeriod,jdbcType=INTEGER},
</if>
<if
test=
"period != null"
>
period = #{period,jdbcType=INTEGER},
</if>
<if
test=
"validateContent != null"
>
validate_content = #{validateContent,jdbcType=VARCHAR},
</if>
<if
test=
"validateResult != null"
>
validate_result = #{validateResult,jdbcType=VARCHAR},
</if>
<if
test=
"result != null"
>
result = #{result,jdbcType=VARCHAR},
</if>
<if
test=
"validateUser != null"
>
validate_user = #{validateUser,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.DataValidateLog"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
update data_validate_log
set organization_id = #{organizationId,jdbcType=VARCHAR},
project_id = #{projectId,jdbcType=VARCHAR},
company_code = #{companyCode,jdbcType=VARCHAR},
company_name = #{companyName,jdbcType=VARCHAR},
tms_period = #{tmsPeriod,jdbcType=INTEGER},
period = #{period,jdbcType=INTEGER},
validate_content = #{validateContent,jdbcType=VARCHAR},
validate_result = #{validateResult,jdbcType=VARCHAR},
result = #{result,jdbcType=VARCHAR},
validate_user = #{validateUser,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
update_time = #{updateTime,jdbcType=TIMESTAMP}
where id = #{id,jdbcType=BIGINT}
</update>
<select
id=
"selectByExampleWithRowbounds"
parameterType=
"pwc.taxtech.atms.entity.DataValidateLogExample"
resultMap=
"BaseResultMap"
>
<!--
WARNING - @mbg.generated
This element is automatically generated by MyBatis Generator, do not modify.
-->
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
from data_validate_log
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
</mapper>
\ No newline at end of file
atms-web/src/main/webapp/app/common/vatservices/dataProcessService.js
View file @
8d2b4f76
...
...
@@ -80,9 +80,6 @@ webservices.factory('dataProcessService', ['$log', 'vatReportService', function
_status
=
status
;
_cb
=
cb
;
setTimeout
(
heartBeat
,
timeInterval
);
},
displayProcessLog
:
function
(
queryParams
)
{
return
$http
.
post
(
'/DataImport/displayProcessLog'
,
queryParams
,
apiConfig
.
create
());
}
};
...
...
atms-web/src/main/webapp/app/common/vatservices/vatImportService.js
View file @
8d2b4f76
...
...
@@ -402,6 +402,9 @@
displayImportLog
:
function
(
pageInfo
,
type
)
{
return
$http
.
post
(
'/DataImport/displayImportLog'
,
{
pageInfo
:
pageInfo
,
type
:
type
},
apiConfig
.
create
());
},
displayProcessLog
:
function
(
queryParams
)
{
return
$http
.
post
(
'/DataImport/displayProcessLog'
,
queryParams
,
apiConfig
.
create
());
}
/***************************************批量数据导入服务(真) end**************************************************************/
...
...
atms-web/src/main/webapp/app/dataImport/log/process-log/process-log.ctrl.js
View file @
8d2b4f76
...
...
@@ -63,49 +63,50 @@
allowHeaderFiltering
:
false
,
caption
:
$translate
.
instant
(
'id'
)
},
{
dataField
:
"
taxpayerIdNum
"
,
dataField
:
"
companyCode
"
,
width
:
'15%'
,
allowHeaderFiltering
:
false
,
caption
:
$translate
.
instant
(
'CompanyCode'
)
},
{
dataField
:
"company
Cod
e"
,
dataField
:
"company
Nam
e"
,
allowHeaderFiltering
:
false
,
caption
:
$translate
.
instant
(
'CompanyName'
),
width
:
'1
5
%'
width
:
'1
4
%'
},
{
dataField
:
"
companyName
"
,
dataField
:
"
tmsPeriod
"
,
allowHeaderFiltering
:
false
,
width
:
'
10
%'
,
caption
:
$translate
.
instant
(
'
Year
Period'
)
width
:
'
8
%'
,
caption
:
$translate
.
instant
(
'
TMS
Period'
)
},
{
dataField
:
"period
Year
"
,
dataField
:
"period"
,
allowHeaderFiltering
:
false
,
width
:
'
5
%'
,
width
:
'
8
%'
,
caption
:
$translate
.
instant
(
'Period'
)
},
{
dataField
:
"
periodMonth
"
,
dataField
:
"
validateContent
"
,
allowHeaderFiltering
:
false
,
width
:
'15%'
,
caption
:
$translate
.
instant
(
'ValidateContent'
)
},
{
dataField
:
"
periodMonth
"
,
dataField
:
"
validateResult
"
,
allowHeaderFiltering
:
false
,
width
:
'
5
%'
,
width
:
'
10
%'
,
caption
:
$translate
.
instant
(
'ValidateResult'
)
},
{
dataField
:
"re
cordSize
"
,
dataField
:
"re
sult
"
,
allowHeaderFiltering
:
false
,
width
:
'15%'
,
caption
:
$translate
.
instant
(
'ResultMsg'
)
},
{
dataField
:
"
errorMsg
"
,
dataField
:
"
validateUser
"
,
allowHeaderFiltering
:
false
,
width
:
'10%'
,
caption
:
$translate
.
instant
(
'Operater'
)
},
{
dataField
:
"
errorMsg
"
,
dataField
:
"
createTime
"
,
allowHeaderFiltering
:
false
,
width
:
'15%'
,
dataType
:
"date"
,
width
:
'10%'
,
caption
:
$translate
.
instant
(
'OperateTime'
)
}
],
...
...
@@ -142,7 +143,7 @@
}
}
};
//
getProcessLog();
getProcessLog
();
};
var
getProcessLog
=
function
()
{
...
...
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