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
5c41d6eb
Commit
5c41d6eb
authored
Feb 27, 2019
by
eddie.woo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.spreedJs license;2.开票映射
parent
b27e0d44
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
121 additions
and
7 deletions
+121
-7
vatGeneratorConfig.xml
atms-dao/etc/generator-mysql/vatGeneratorConfig.xml
+9
-4
RevenueTypeMappingMapper.java
...va/pwc/taxtech/atms/vat/dao/RevenueTypeMappingMapper.java
+109
-0
RevenueTypeMapping.java
.../java/pwc/taxtech/atms/vat/entity/RevenueTypeMapping.java
+0
-0
RevenueTypeMappingExample.java
...wc/taxtech/atms/vat/entity/RevenueTypeMappingExample.java
+0
-0
RevenueTypeMappingMapper.xml
...ces/pwc/taxtech/atms/vat/dao/RevenueTypeMappingMapper.xml
+0
-0
constant.js
atms-web/src/main/webapp/app/common/utils/constant.js
+3
-3
No files found.
atms-dao/etc/generator-mysql/vatGeneratorConfig.xml
View file @
5c41d6eb
...
...
@@ -41,15 +41,20 @@
<property
name=
"rootInterface"
value=
"pwc.taxtech.atms.MyVatMapper"
/>
</javaClientGenerator>
<!-- <table tableName="trial_balance_final" domainObjectName="TrialBalanceFinal
">
<table
tableName=
"revenue_type_mapping"
domainObjectName=
"RevenueTypeMapping
"
>
<property
name=
"useActualColumnNames"
value=
"false"
/>
<property
name=
"ignoreQualifiersAtRuntime"
value=
"true"
/>
</table>
-->
</table>
<table
tableName=
"pwc_report_attach"
domainObjectName=
"PwcReportAttach
"
>
<!-- <table tableName="trial_balance_final" domainObjectName="TrialBalanceFinal
">
<property name="useActualColumnNames" value="false"/>
<property name="ignoreQualifiersAtRuntime" value="true"/>
</table>
</table>-->
<!--<table tableName="pwc_report_attach" domainObjectName="PwcReportAttach">-->
<!--<property name="useActualColumnNames" value="false"/>-->
<!--<property name="ignoreQualifiersAtRuntime" value="true"/>-->
<!--</table>-->
<!--<table tableName="certified_invoices_list" domainObjectName="CertifiedInvoicesList">
<property name="useActualColumnNames" value="false"/>
...
...
atms-dao/src/main/java/pwc/taxtech/atms/vat/dao/RevenueTypeMappingMapper.java
0 → 100644
View file @
5c41d6eb
package
pwc
.
taxtech
.
atms
.
vat
.
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.MyVatMapper
;
import
pwc.taxtech.atms.vat.entity.RevenueTypeMapping
;
import
pwc.taxtech.atms.vat.entity.RevenueTypeMappingExample
;
@Mapper
public
interface
RevenueTypeMappingMapper
extends
MyVatMapper
{
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table revenue_type_mapping
*
* @mbg.generated
*/
long
countByExample
(
RevenueTypeMappingExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table revenue_type_mapping
*
* @mbg.generated
*/
int
deleteByExample
(
RevenueTypeMappingExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table revenue_type_mapping
*
* @mbg.generated
*/
int
deleteByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table revenue_type_mapping
*
* @mbg.generated
*/
int
insert
(
RevenueTypeMapping
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table revenue_type_mapping
*
* @mbg.generated
*/
int
insertSelective
(
RevenueTypeMapping
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table revenue_type_mapping
*
* @mbg.generated
*/
List
<
RevenueTypeMapping
>
selectByExampleWithRowbounds
(
RevenueTypeMappingExample
example
,
RowBounds
rowBounds
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table revenue_type_mapping
*
* @mbg.generated
*/
List
<
RevenueTypeMapping
>
selectByExample
(
RevenueTypeMappingExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table revenue_type_mapping
*
* @mbg.generated
*/
RevenueTypeMapping
selectByPrimaryKey
(
Long
id
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table revenue_type_mapping
*
* @mbg.generated
*/
int
updateByExampleSelective
(
@Param
(
"record"
)
RevenueTypeMapping
record
,
@Param
(
"example"
)
RevenueTypeMappingExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table revenue_type_mapping
*
* @mbg.generated
*/
int
updateByExample
(
@Param
(
"record"
)
RevenueTypeMapping
record
,
@Param
(
"example"
)
RevenueTypeMappingExample
example
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table revenue_type_mapping
*
* @mbg.generated
*/
int
updateByPrimaryKeySelective
(
RevenueTypeMapping
record
);
/**
* This method was generated by MyBatis Generator.
* This method corresponds to the database table revenue_type_mapping
*
* @mbg.generated
*/
int
updateByPrimaryKey
(
RevenueTypeMapping
record
);
}
\ No newline at end of file
atms-dao/src/main/java/pwc/taxtech/atms/vat/entity/RevenueTypeMapping.java
0 → 100644
View file @
5c41d6eb
This diff is collapsed.
Click to expand it.
atms-dao/src/main/java/pwc/taxtech/atms/vat/entity/RevenueTypeMappingExample.java
0 → 100644
View file @
5c41d6eb
This diff is collapsed.
Click to expand it.
atms-dao/src/main/resources/pwc/taxtech/atms/vat/dao/RevenueTypeMappingMapper.xml
0 → 100644
View file @
5c41d6eb
This diff is collapsed.
Click to expand it.
atms-web/src/main/webapp/app/common/utils/constant.js
View file @
5c41d6eb
...
...
@@ -2,12 +2,12 @@
constant
.
regesterInformation
=
{
active
:
true
,
userKey
:
"
etms.longi-silicon.com,164826354976336#A0KNoIsIiNzMjN7kDN5MjNygDN6EjI0ICZJJCL3V6csFmZ0IiczRmI1pjIs9WQisnOiQkIsISP3E5cvdzNjB5bkNUc9E7U8l6UolVZG3UcVNmcZBTYUZEWRFVSpdkT7gXSvUkVy8UdnpER6c4VZFVN7gTM584aQNjQldEMlhlTwBzZ856Qzl6MvUkbhVzQiojITJCL9EDMyYDO5cjM0IicfJye#4Xfd5nIzImNnJiOiMkIsISMx8idgMlSgQWYlJHcTJiOi8kI1tlOiQmcQJCLiAjM5IzMwAiMxATM8EDMyIiOiQncDJCLi46bj9ibvNWasl6ctk6Zu3GbuMXb4VmI0IyctRkIsICuPWOrFWuhIW+t5aui8SOuPWOrFWOkZmeicaei2++scWes7aOi2+uoviOqSW+kBmOuwaujNWurZauIsI9Y
"
}
userKey
:
"
dts.erp.didichuxing.com,164826354976336#A0jDtCLiYzMzYzN9QTNzYjM8QjNxIiOiQWSiwSflNHbhZmOiI7ckJye0ICbuFkI1pjIEJCLi4TP7JGMrVjMIV5YHh4L5BTUMNGa9wkc4hzL4QURnpGVPxWWulVQQZDRkRGV7d4NvlVNll5RvJVVohWT98GN5QjQHV5LDlWTNN6SIdVb9Y4QzZUNsZWdwVnI0IyUiwCM8kjMxIjNwQTM0IicfJye&Qf35VfiMjY6cmI0IyQiwiIxEjL6ByUKBCZhVmcwNlI0IiTis7W0ICZyBlIsISO5UDMxADI7IjMwkTMwIjI0ICdyNkIsISbvNmLn9Wa8VHajlGZpRmLwJXZuMHdkJiOiMXbEJCLig1jlzahlbIilfbtmrIukj1jlzahlDZmpnInmnIvvPLnlH1tmjIvvL0rojqklPZgpjLsm1Yjl1ammLieiom
"
}
;
constant
.
guid
=
{
empty
:
'00000000-0000-0000-0000-000000000000'
}
}
;
//数据验证起始值范围
constant
.
startNum
=
-
1000000000000
;
...
...
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