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
b890ebc8
Commit
b890ebc8
authored
Mar 01, 2019
by
gary
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1、je + tmsPeriod
parent
3e000f31
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
155 additions
and
9 deletions
+155
-9
JournalEntryQueryDto.java
...ava/pwc/taxtech/atms/dto/ebsdto/JournalEntryQueryDto.java
+19
-0
JournalEntryDto.java
.../java/pwc/taxtech/atms/dto/vatdto/dd/JournalEntryDto.java
+36
-0
JournalEntryExportDto.java
...pwc/taxtech/atms/dto/vatdto/dd/JournalEntryExportDto.java
+3
-0
DataPreviewSerivceImpl.java
...pwc/taxtech/atms/service/impl/DataPreviewSerivceImpl.java
+1
-0
JournalEntry.java
...c/main/java/pwc/taxtech/atms/vat/entity/JournalEntry.java
+36
-9
JournalEntryExample.java
...java/pwc/taxtech/atms/vat/entity/JournalEntryExample.java
+60
-0
JournalEntryMapper.xml
...resources/pwc/taxtech/atms/vat/dao/JournalEntryMapper.xml
+0
-0
No files found.
atms-api/src/main/java/pwc/taxtech/atms/dto/ebsdto/JournalEntryQueryDto.java
View file @
b890ebc8
...
...
@@ -764,6 +764,17 @@ public class JournalEntryQueryDto {
*/
private
Date
updateTime
;
/**
* Database Column Remarks:
* 税务系统期间 yyyyMM
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column journal_entry.tms_period
*
* @mbg.generated
*/
private
Integer
tmsPeriod
;
public
Long
getId
()
{
return
id
;
}
...
...
@@ -1315,4 +1326,12 @@ public class JournalEntryQueryDto {
public
void
setUpdateTime
(
Date
updateTime
)
{
this
.
updateTime
=
updateTime
;
}
public
Integer
getTmsPeriod
()
{
return
tmsPeriod
;
}
public
void
setTmsPeriod
(
Integer
tmsPeriod
)
{
this
.
tmsPeriod
=
tmsPeriod
;
}
}
atms-api/src/main/java/pwc/taxtech/atms/dto/vatdto/dd/JournalEntryDto.java
View file @
b890ebc8
...
...
@@ -160,6 +160,17 @@ public class JournalEntryDto implements Serializable {
*/
private
String
postedStatus
;
/**
* Database Column Remarks:
* 税务系统期间 yyyyMM
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column journal_entry.tms_period
*
* @mbg.generated
*/
private
Integer
tmsPeriod
;
/**
* Database Column Remarks:
* 会计期间 yyyymm
...
...
@@ -1096,6 +1107,30 @@ public class JournalEntryDto implements Serializable {
this
.
postedStatus
=
postedStatus
==
null
?
null
:
postedStatus
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column journal_entry.tms_period
*
* @return the value of journal_entry.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 journal_entry.tms_period
*
* @param tmsPeriod the value for journal_entry.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 journal_entry.period
...
...
@@ -2465,6 +2500,7 @@ public class JournalEntryDto implements Serializable {
sb
.
append
(
", lineNum="
).
append
(
lineNum
);
sb
.
append
(
", approvalStatus="
).
append
(
approvalStatus
);
sb
.
append
(
", postedStatus="
).
append
(
postedStatus
);
sb
.
append
(
", tmsPeriod="
).
append
(
tmsPeriod
);
sb
.
append
(
", period="
).
append
(
period
);
sb
.
append
(
", accountingDate="
).
append
(
accountingDate
);
sb
.
append
(
", journalSource="
).
append
(
journalSource
);
...
...
atms-api/src/main/java/pwc/taxtech/atms/dto/vatdto/dd/JournalEntryExportDto.java
View file @
b890ebc8
...
...
@@ -212,6 +212,9 @@ public class JournalEntryExportDto {
@ExcelCell
(
index
=
64
)
private
Date
lateUpdatedDate
;
@ExcelCell
(
index
=
65
)
private
Integer
tmsPeriod
;
private
Date
createTime
;
private
Date
updateTime
;
...
...
atms-api/src/main/java/pwc/taxtech/atms/service/impl/DataPreviewSerivceImpl.java
View file @
b890ebc8
...
...
@@ -685,6 +685,7 @@ public class DataPreviewSerivceImpl extends BaseService {
header
.
put
(
"CreatedDate"
,
"创建日期"
);
header
.
put
(
"LateUpdatedBy"
,
"最后更新人"
);
header
.
put
(
"LateUpdatedDate"
,
"最后更新日期"
);
header
.
put
(
"tmsPeriod"
,
"税务系统期间"
);
return
header
;
}
...
...
atms-dao/src/main/java/pwc/taxtech/atms/vat/entity/JournalEntry.java
View file @
b890ebc8
...
...
@@ -156,6 +156,17 @@ public class JournalEntry extends BaseEntity implements Serializable {
*/
private
String
postedStatus
;
/**
* Database Column Remarks:
* 税务系统期间 yyyyMM
*
* This field was generated by MyBatis Generator.
* This field corresponds to the database column journal_entry.tms_period
*
* @mbg.generated
*/
private
Integer
tmsPeriod
;
/**
* Database Column Remarks:
* 会计期间 yyyymm
...
...
@@ -221,15 +232,6 @@ public class JournalEntry extends BaseEntity implements Serializable {
* @mbg.generated
*/
private
String
voucherNum
;
private
BigDecimal
periodJrMinDr
;
public
BigDecimal
getPeriodJrMinDr
()
{
return
periodJrMinDr
;
}
public
void
setPeriodJrMinDr
(
BigDecimal
periodJrMinDr
)
{
this
.
periodJrMinDr
=
periodJrMinDr
;
}
/**
* Database Column Remarks:
...
...
@@ -1101,6 +1103,30 @@ public class JournalEntry extends BaseEntity implements Serializable {
this
.
postedStatus
=
postedStatus
==
null
?
null
:
postedStatus
.
trim
();
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column journal_entry.tms_period
*
* @return the value of journal_entry.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 journal_entry.tms_period
*
* @param tmsPeriod the value for journal_entry.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 journal_entry.period
...
...
@@ -2470,6 +2496,7 @@ public class JournalEntry extends BaseEntity implements Serializable {
sb
.
append
(
", lineNum="
).
append
(
lineNum
);
sb
.
append
(
", approvalStatus="
).
append
(
approvalStatus
);
sb
.
append
(
", postedStatus="
).
append
(
postedStatus
);
sb
.
append
(
", tmsPeriod="
).
append
(
tmsPeriod
);
sb
.
append
(
", period="
).
append
(
period
);
sb
.
append
(
", accountingDate="
).
append
(
accountingDate
);
sb
.
append
(
", journalSource="
).
append
(
journalSource
);
...
...
atms-dao/src/main/java/pwc/taxtech/atms/vat/entity/JournalEntryExample.java
View file @
b890ebc8
...
...
@@ -1086,6 +1086,66 @@ public class JournalEntryExample {
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
;
...
...
atms-dao/src/main/resources/pwc/taxtech/atms/vat/dao/JournalEntryMapper.xml
View file @
b890ebc8
This diff is collapsed.
Click to expand it.
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