Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JSH ERP
Commits
0d6f1449
"erp_web/js/easyui-1.3.5/demo/menubutton/basic.html" did not exist on "a67629d0f78804c5513884ef28bca9c33d350d92"
Commit
0d6f1449
authored
Mar 12, 2019
by
qiankunpingtai
Browse files
从远程仓库更新
parents
c868c071
2195b8bf
Changes
29
Show whitespace changes
Inline
Side-by-side
src/main/java/com/jsh/erp/datasource/vo/DepotHeadVo4List.java
View file @
0d6f1449
...
...
@@ -59,7 +59,9 @@ public class DepotHeadVo4List {
private
Integer
accountday
;
private
Boolean
status
;
private
String
status
;
private
String
linknumber
;
private
String
projectName
;
...
...
@@ -291,14 +293,22 @@ public class DepotHeadVo4List {
this
.
accountday
=
accountday
;
}
public
Boolean
getStatus
()
{
public
String
getStatus
()
{
return
status
;
}
public
void
setStatus
(
Boolean
status
)
{
public
void
setStatus
(
String
status
)
{
this
.
status
=
status
;
}
public
String
getLinknumber
()
{
return
linknumber
;
}
public
void
setLinknumber
(
String
linknumber
)
{
this
.
linknumber
=
linknumber
;
}
public
String
getProjectName
()
{
return
projectName
;
}
...
...
src/main/java/com/jsh/erp/service/depotHead/DepotHeadService.java
View file @
0d6f1449
...
...
@@ -106,7 +106,7 @@ public class DepotHeadService {
depotHead
.
setOperpersonname
(
uName
);
}
depotHead
.
setCreatetime
(
new
Timestamp
(
System
.
currentTimeMillis
()));
depotHead
.
setStatus
(
false
);
depotHead
.
setStatus
(
BusinessConstants
.
BILLS_STATUS_UN_AUDIT
);
return
depotHeadMapper
.
insert
(
depotHead
);
}
...
...
@@ -142,7 +142,7 @@ public class DepotHeadService {
}
@Transactional
(
value
=
"transactionManager"
,
rollbackFor
=
Exception
.
class
)
public
int
batchSetStatus
(
Boolean
status
,
String
depotHeadIDs
)
{
public
int
batchSetStatus
(
String
status
,
String
depotHeadIDs
)
{
List
<
Long
>
ids
=
StringUtil
.
strToLongList
(
depotHeadIDs
);
DepotHead
depotHead
=
new
DepotHead
();
depotHead
.
setStatus
(
status
);
...
...
@@ -275,7 +275,7 @@ public class DepotHeadService {
User
userInfo
=
userService
.
getCurrentUser
();
depotHead
.
setOperpersonname
(
userInfo
==
null
?
null
:
userInfo
.
getUsername
());
depotHead
.
setCreatetime
(
new
Timestamp
(
System
.
currentTimeMillis
()));
depotHead
.
setStatus
(
false
);
depotHead
.
setStatus
(
BusinessConstants
.
BILLS_STATUS_UN_AUDIT
);
depotHeadMapperEx
.
adddepotHead
(
depotHead
);
/**入库和出库处理预付款信息*/
if
(
BusinessConstants
.
PAY_TYPE_PREPAID
.
equals
(
depotHead
.
getPaytype
())){
...
...
@@ -285,6 +285,14 @@ public class DepotHeadService {
}
/**入库和出库处理单据子表信息*/
depotItemService
.
saveDetials
(
inserted
,
deleted
,
updated
,
depotHead
.
getId
());
/**如果关联单据号非空则更新订单的状态为2 */
if
(
depotHead
.
getLinknumber
()!=
null
)
{
DepotHead
depotHeadOrders
=
new
DepotHead
();
depotHeadOrders
.
setStatus
(
BusinessConstants
.
BILLS_STATUS_SKIP
);
DepotHeadExample
example
=
new
DepotHeadExample
();
example
.
createCriteria
().
andNumberEqualTo
(
depotHead
.
getLinknumber
());
depotHeadMapper
.
updateByExampleSelective
(
depotHeadOrders
,
example
);
}
}
/**
* create by: cjl
...
...
src/main/java/com/jsh/erp/service/systemConfig/SystemConfigComponent.java
View file @
0d6f1449
...
...
@@ -31,13 +31,17 @@ public class SystemConfigComponent implements ICommonQuery {
}
private
List
<?>
getSystemConfigList
(
Map
<
String
,
String
>
map
)
{
String
search
=
map
.
get
(
Constants
.
SEARCH
);
String
companyName
=
StringUtil
.
getInfo
(
search
,
"companyName"
);
String
order
=
QueryUtils
.
order
(
map
);
return
systemConfigService
.
select
(
QueryUtils
.
offset
(
map
),
QueryUtils
.
rows
(
map
));
return
systemConfigService
.
select
(
companyName
,
QueryUtils
.
offset
(
map
),
QueryUtils
.
rows
(
map
));
}
@Override
public
Long
counts
(
Map
<
String
,
String
>
map
)
{
return
systemConfigService
.
countSystemConfig
();
String
search
=
map
.
get
(
Constants
.
SEARCH
);
String
companyName
=
StringUtil
.
getInfo
(
search
,
"companyName"
);
return
systemConfigService
.
countSystemConfig
(
companyName
);
}
@Override
...
...
src/main/java/com/jsh/erp/service/systemConfig/SystemConfigService.java
View file @
0d6f1449
...
...
@@ -33,12 +33,12 @@ public class SystemConfigService {
SystemConfigExample
example
=
new
SystemConfigExample
();
return
systemConfigMapper
.
selectByExample
(
example
);
}
public
List
<
SystemConfig
>
select
(
int
offset
,
int
rows
)
{
return
systemConfigMapperEx
.
selectByConditionSystemConfig
(
offset
,
rows
);
public
List
<
SystemConfig
>
select
(
String
companyName
,
int
offset
,
int
rows
)
{
return
systemConfigMapperEx
.
selectByConditionSystemConfig
(
companyName
,
offset
,
rows
);
}
public
Long
countSystemConfig
()
{
return
systemConfigMapperEx
.
countsBySystemConfig
();
public
Long
countSystemConfig
(
String
companyName
)
{
return
systemConfigMapperEx
.
countsBySystemConfig
(
companyName
);
}
@Transactional
(
value
=
"transactionManager"
,
rollbackFor
=
Exception
.
class
)
...
...
@@ -69,7 +69,7 @@ public class SystemConfigService {
public
int
checkIsNameExist
(
Long
id
,
String
name
)
{
SystemConfigExample
example
=
new
SystemConfigExample
();
example
.
createCriteria
().
andIdNotEqualTo
(
id
).
andNameEqualTo
(
name
);
example
.
createCriteria
().
andIdNotEqualTo
(
id
).
and
Company
NameEqualTo
(
name
);
List
<
SystemConfig
>
list
=
systemConfigMapper
.
selectByExample
(
example
);
return
list
.
size
();
}
...
...
src/main/resources/mapper_xml/DepotHeadMapper.xml
View file @
0d6f1449
...
...
@@ -33,7 +33,8 @@
<result
column=
"OtherMoneyList"
jdbcType=
"VARCHAR"
property=
"othermoneylist"
/>
<result
column=
"OtherMoneyItem"
jdbcType=
"VARCHAR"
property=
"othermoneyitem"
/>
<result
column=
"AccountDay"
jdbcType=
"INTEGER"
property=
"accountday"
/>
<result
column=
"Status"
jdbcType=
"BIT"
property=
"status"
/>
<result
column=
"Status"
jdbcType=
"VARCHAR"
property=
"status"
/>
<result
column=
"LinkNumber"
jdbcType=
"VARCHAR"
property=
"linknumber"
/>
</resultMap>
<sql
id=
"Example_Where_Clause"
>
<!--
...
...
@@ -109,7 +110,8 @@
Id, Type, SubType, ProjectId, DefaultNumber, Number, OperPersonName, CreateTime,
OperTime, OrganId, HandsPersonId, AccountId, ChangeAmount, AllocationProjectId, TotalPrice,
PayType, Remark, Salesman, AccountIdList, AccountMoneyList, Discount, DiscountMoney,
DiscountLastMoney, OtherMoney, OtherMoneyList, OtherMoneyItem, AccountDay, Status
DiscountLastMoney, OtherMoney, OtherMoneyList, OtherMoneyItem, AccountDay, Status,
LinkNumber
</sql>
<select
id=
"selectByExample"
parameterType=
"com.jsh.erp.datasource.entities.DepotHeadExample"
resultMap=
"BaseResultMap"
>
<!--
...
...
@@ -171,7 +173,7 @@
AccountIdList, AccountMoneyList, Discount,
DiscountMoney, DiscountLastMoney, OtherMoney,
OtherMoneyList, OtherMoneyItem, AccountDay,
Status)
Status
, LinkNumber
)
values (#{id,jdbcType=BIGINT}, #{type,jdbcType=VARCHAR}, #{subtype,jdbcType=VARCHAR},
#{projectid,jdbcType=BIGINT}, #{defaultnumber,jdbcType=VARCHAR}, #{number,jdbcType=VARCHAR},
#{operpersonname,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{opertime,jdbcType=TIMESTAMP},
...
...
@@ -181,7 +183,7 @@
#{accountidlist,jdbcType=VARCHAR}, #{accountmoneylist,jdbcType=VARCHAR}, #{discount,jdbcType=DECIMAL},
#{discountmoney,jdbcType=DECIMAL}, #{discountlastmoney,jdbcType=DECIMAL}, #{othermoney,jdbcType=DECIMAL},
#{othermoneylist,jdbcType=VARCHAR}, #{othermoneyitem,jdbcType=VARCHAR}, #{accountday,jdbcType=INTEGER},
#{status,jdbcType=
BIT
})
#{status,jdbcType=
VARCHAR}, #{linknumber,jdbcType=VARCHAR
})
</insert>
<insert
id=
"insertSelective"
parameterType=
"com.jsh.erp.datasource.entities.DepotHead"
>
<!--
...
...
@@ -274,6 +276,9 @@
<if
test=
"status != null"
>
Status,
</if>
<if
test=
"linknumber != null"
>
LinkNumber,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
...
...
@@ -358,7 +363,10 @@
#{accountday,jdbcType=INTEGER},
</if>
<if
test=
"status != null"
>
#{status,jdbcType=BIT},
#{status,jdbcType=VARCHAR},
</if>
<if
test=
"linknumber != null"
>
#{linknumber,jdbcType=VARCHAR},
</if>
</trim>
</insert>
...
...
@@ -461,7 +469,10 @@
AccountDay = #{record.accountday,jdbcType=INTEGER},
</if>
<if
test=
"record.status != null"
>
Status = #{record.status,jdbcType=BIT},
Status = #{record.status,jdbcType=VARCHAR},
</if>
<if
test=
"record.linknumber != null"
>
LinkNumber = #{record.linknumber,jdbcType=VARCHAR},
</if>
</set>
<if
test=
"_parameter != null"
>
...
...
@@ -501,7 +512,8 @@
OtherMoneyList = #{record.othermoneylist,jdbcType=VARCHAR},
OtherMoneyItem = #{record.othermoneyitem,jdbcType=VARCHAR},
AccountDay = #{record.accountday,jdbcType=INTEGER},
Status = #{record.status,jdbcType=BIT}
Status = #{record.status,jdbcType=VARCHAR},
LinkNumber = #{record.linknumber,jdbcType=VARCHAR}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
...
...
@@ -592,7 +604,10 @@
AccountDay = #{accountday,jdbcType=INTEGER},
</if>
<if
test=
"status != null"
>
Status = #{status,jdbcType=BIT},
Status = #{status,jdbcType=VARCHAR},
</if>
<if
test=
"linknumber != null"
>
LinkNumber = #{linknumber,jdbcType=VARCHAR},
</if>
</set>
where Id = #{id,jdbcType=BIGINT}
...
...
@@ -629,7 +644,8 @@
OtherMoneyList = #{othermoneylist,jdbcType=VARCHAR},
OtherMoneyItem = #{othermoneyitem,jdbcType=VARCHAR},
AccountDay = #{accountday,jdbcType=INTEGER},
Status = #{status,jdbcType=BIT}
Status = #{status,jdbcType=VARCHAR},
LinkNumber = #{linknumber,jdbcType=VARCHAR}
where Id = #{id,jdbcType=BIGINT}
</update>
</mapper>
\ No newline at end of file
src/main/resources/mapper_xml/DepotHeadMapperEx.xml
View file @
0d6f1449
...
...
@@ -293,7 +293,7 @@
AccountIdList, AccountMoneyList, Discount,
DiscountMoney, DiscountLastMoney, OtherMoney,
OtherMoneyList, OtherMoneyItem, AccountDay,
Status)
Status
, LinkNumber
)
values (#{type,jdbcType=VARCHAR}, #{subtype,jdbcType=VARCHAR},
#{projectid,jdbcType=BIGINT}, #{defaultnumber,jdbcType=VARCHAR}, #{number,jdbcType=VARCHAR},
#{operpersonname,jdbcType=VARCHAR}, #{createtime,jdbcType=TIMESTAMP}, #{opertime,jdbcType=TIMESTAMP},
...
...
@@ -303,7 +303,7 @@
#{accountidlist,jdbcType=VARCHAR}, #{accountmoneylist,jdbcType=VARCHAR}, #{discount,jdbcType=DECIMAL},
#{discountmoney,jdbcType=DECIMAL}, #{discountlastmoney,jdbcType=DECIMAL}, #{othermoney,jdbcType=DECIMAL},
#{othermoneylist,jdbcType=VARCHAR}, #{othermoneyitem,jdbcType=VARCHAR}, #{accountday,jdbcType=INTEGER},
#{status,jdbcType=
BIT
})
#{status,jdbcType=
VARCHAR}, #{linknumber,jdbcType=VARCHAR
})
</insert>
<update
id=
"updatedepotHead"
parameterType=
"com.jsh.erp.datasource.entities.DepotHead"
>
update jsh_depothead
...
...
@@ -384,7 +384,10 @@
AccountDay = #{accountday,jdbcType=INTEGER},
</if>
<if
test=
"status != null"
>
Status = #{status,jdbcType=BIT},
Status = #{status,jdbcType=VARCHAR},
</if>
<if
test=
"linknumber != null"
>
LinkNumber = #{linknumber,jdbcType=VARCHAR},
</if>
</set>
where Id = #{id,jdbcType=BIGINT}
...
...
src/main/resources/mapper_xml/SystemConfigMapper.xml
View file @
0d6f1449
...
...
@@ -7,10 +7,12 @@
This element is automatically generated by MyBatis Generator, do not modify.
-->
<id
column=
"id"
jdbcType=
"BIGINT"
property=
"id"
/>
<result
column=
"type"
jdbcType=
"VARCHAR"
property=
"type"
/>
<result
column=
"name"
jdbcType=
"VARCHAR"
property=
"name"
/>
<result
column=
"value"
jdbcType=
"VARCHAR"
property=
"value"
/>
<result
column=
"description"
jdbcType=
"VARCHAR"
property=
"description"
/>
<result
column=
"company_name"
jdbcType=
"VARCHAR"
property=
"companyName"
/>
<result
column=
"company_contacts"
jdbcType=
"VARCHAR"
property=
"companyContacts"
/>
<result
column=
"company_address"
jdbcType=
"VARCHAR"
property=
"companyAddress"
/>
<result
column=
"company_tel"
jdbcType=
"VARCHAR"
property=
"companyTel"
/>
<result
column=
"company_fax"
jdbcType=
"VARCHAR"
property=
"companyFax"
/>
<result
column=
"company_post_code"
jdbcType=
"VARCHAR"
property=
"companyPostCode"
/>
</resultMap>
<sql
id=
"Example_Where_Clause"
>
<!--
...
...
@@ -83,7 +85,7 @@
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
-->
id,
type, name, value, description
id,
company_name, company_contacts, company_address, company_tel, company_fax, company_post_code
</sql>
<select
id=
"selectByExample"
parameterType=
"com.jsh.erp.datasource.entities.SystemConfigExample"
resultMap=
"BaseResultMap"
>
<!--
...
...
@@ -136,10 +138,12 @@
WARNING - @mbggenerated
This element is automatically generated by MyBatis Generator, do not modify.
-->
insert into jsh_systemconfig (id, type, name,
value, description)
values (#{id,jdbcType=BIGINT}, #{type,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR},
#{value,jdbcType=VARCHAR}, #{description,jdbcType=VARCHAR})
insert into jsh_systemconfig (id, company_name, company_contacts,
company_address, company_tel, company_fax,
company_post_code)
values (#{id,jdbcType=BIGINT}, #{companyName,jdbcType=VARCHAR}, #{companyContacts,jdbcType=VARCHAR},
#{companyAddress,jdbcType=VARCHAR}, #{companyTel,jdbcType=VARCHAR}, #{companyFax,jdbcType=VARCHAR},
#{companyPostCode,jdbcType=VARCHAR})
</insert>
<insert
id=
"insertSelective"
parameterType=
"com.jsh.erp.datasource.entities.SystemConfig"
>
<!--
...
...
@@ -151,34 +155,46 @@
<if
test=
"id != null"
>
id,
</if>
<if
test=
"
typ
e != null"
>
typ
e,
<if
test=
"
companyNam
e != null"
>
company_nam
e,
</if>
<if
test=
"
name
!= null"
>
name
,
<if
test=
"
companyContacts
!= null"
>
company_contacts
,
</if>
<if
test=
"
value
!= null"
>
value
,
<if
test=
"
companyAddress
!= null"
>
company_address
,
</if>
<if
test=
"description != null"
>
description,
<if
test=
"companyTel != null"
>
company_tel,
</if>
<if
test=
"companyFax != null"
>
company_fax,
</if>
<if
test=
"companyPostCode != null"
>
company_post_code,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=BIGINT},
</if>
<if
test=
"type != null"
>
#{type,jdbcType=VARCHAR},
<if
test=
"companyName != null"
>
#{companyName,jdbcType=VARCHAR},
</if>
<if
test=
"companyContacts != null"
>
#{companyContacts,jdbcType=VARCHAR},
</if>
<if
test=
"companyAddress != null"
>
#{companyAddress,jdbcType=VARCHAR},
</if>
<if
test=
"
name
!= null"
>
#{
name
,jdbcType=VARCHAR},
<if
test=
"
companyTel
!= null"
>
#{
companyTel
,jdbcType=VARCHAR},
</if>
<if
test=
"
value
!= null"
>
#{
value
,jdbcType=VARCHAR},
<if
test=
"
companyFax
!= null"
>
#{
companyFax
,jdbcType=VARCHAR},
</if>
<if
test=
"
description
!= null"
>
#{
description
,jdbcType=VARCHAR},
<if
test=
"
companyPostCode
!= null"
>
#{
companyPostCode
,jdbcType=VARCHAR},
</if>
</trim>
</insert>
...
...
@@ -202,17 +218,23 @@
<if
test=
"record.id != null"
>
id = #{record.id,jdbcType=BIGINT},
</if>
<if
test=
"record.
typ
e != null"
>
typ
e = #{record.
typ
e,jdbcType=VARCHAR},
<if
test=
"record.
companyNam
e != null"
>
company_nam
e = #{record.
companyNam
e,jdbcType=VARCHAR},
</if>
<if
test=
"record.
name
!= null"
>
name = #{record.name
,jdbcType=VARCHAR},
<if
test=
"record.
companyContacts
!= null"
>
company_contacts = #{record.companyContacts
,jdbcType=VARCHAR},
</if>
<if
test=
"record.
value
!= null"
>
value = #{record.value
,jdbcType=VARCHAR},
<if
test=
"record.
companyAddress
!= null"
>
company_address = #{record.companyAddress
,jdbcType=VARCHAR},
</if>
<if
test=
"record.description != null"
>
description = #{record.description,jdbcType=VARCHAR},
<if
test=
"record.companyTel != null"
>
company_tel = #{record.companyTel,jdbcType=VARCHAR},
</if>
<if
test=
"record.companyFax != null"
>
company_fax = #{record.companyFax,jdbcType=VARCHAR},
</if>
<if
test=
"record.companyPostCode != null"
>
company_post_code = #{record.companyPostCode,jdbcType=VARCHAR},
</if>
</set>
<if
test=
"_parameter != null"
>
...
...
@@ -226,10 +248,12 @@
-->
update jsh_systemconfig
set id = #{record.id,jdbcType=BIGINT},
type = #{record.type,jdbcType=VARCHAR},
name = #{record.name,jdbcType=VARCHAR},
value = #{record.value,jdbcType=VARCHAR},
description = #{record.description,jdbcType=VARCHAR}
company_name = #{record.companyName,jdbcType=VARCHAR},
company_contacts = #{record.companyContacts,jdbcType=VARCHAR},
company_address = #{record.companyAddress,jdbcType=VARCHAR},
company_tel = #{record.companyTel,jdbcType=VARCHAR},
company_fax = #{record.companyFax,jdbcType=VARCHAR},
company_post_code = #{record.companyPostCode,jdbcType=VARCHAR}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
...
...
@@ -241,17 +265,23 @@
-->
update jsh_systemconfig
<set>
<if
test=
"type != null"
>
type = #{type,jdbcType=VARCHAR},
<if
test=
"companyName != null"
>
company_name = #{companyName,jdbcType=VARCHAR},
</if>
<if
test=
"companyContacts != null"
>
company_contacts = #{companyContacts,jdbcType=VARCHAR},
</if>
<if
test=
"companyAddress != null"
>
company_address = #{companyAddress,jdbcType=VARCHAR},
</if>
<if
test=
"
name
!= null"
>
name = #{name
,jdbcType=VARCHAR},
<if
test=
"
companyTel
!= null"
>
company_tel = #{companyTel
,jdbcType=VARCHAR},
</if>
<if
test=
"
value
!= null"
>
value = #{value
,jdbcType=VARCHAR},
<if
test=
"
companyFax
!= null"
>
company_fax = #{companyFax
,jdbcType=VARCHAR},
</if>
<if
test=
"
description
!= null"
>
description = #{description
,jdbcType=VARCHAR},
<if
test=
"
companyPostCode
!= null"
>
company_post_code = #{companyPostCode
,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=BIGINT}
...
...
@@ -262,10 +292,12 @@
This element is automatically generated by MyBatis Generator, do not modify.
-->
update jsh_systemconfig
set type = #{type,jdbcType=VARCHAR},
name = #{name,jdbcType=VARCHAR},
value = #{value,jdbcType=VARCHAR},
description = #{description,jdbcType=VARCHAR}
set company_name = #{companyName,jdbcType=VARCHAR},
company_contacts = #{companyContacts,jdbcType=VARCHAR},
company_address = #{companyAddress,jdbcType=VARCHAR},
company_tel = #{companyTel,jdbcType=VARCHAR},
company_fax = #{companyFax,jdbcType=VARCHAR},
company_post_code = #{companyPostCode,jdbcType=VARCHAR}
where id = #{id,jdbcType=BIGINT}
</update>
</mapper>
\ No newline at end of file
src/main/resources/mapper_xml/SystemConfigMapperEx.xml
View file @
0d6f1449
...
...
@@ -5,6 +5,9 @@
select *
FROM jsh_systemconfig
where 1=1
<if
test=
"companyName != null"
>
and company_name like '%${companyName}%'
</if>
<if
test=
"offset != null and rows != null"
>
limit #{offset},#{rows}
</if>
...
...
@@ -14,5 +17,8 @@
COUNT(id)
FROM jsh_systemconfig
WHERE 1=1
<if
test=
"companyName != null"
>
and company_name like '%${companyName}%'
</if>
</select>
</mapper>
\ No newline at end of file
src/test/resources/generatorConfig.xml
View file @
0d6f1449
...
...
@@ -5,7 +5,7 @@
<generatorConfiguration>
<classPathEntry
location=
"
C
:\
Users\cjl\.m2\
repository\mysql\mysql-connector-java\5.1.47\mysql-connector-java-5.1.47.jar"
/>
location=
"
E
:\
maven-
repository\mysql\mysql-connector-java\5.1.47\mysql-connector-java-5.1.47.jar"
/>
<context
id=
"DB2Tables"
targetRuntime=
"MyBatis3"
defaultModelType=
"flat"
>
<commentGenerator>
...
...
@@ -59,12 +59,12 @@
<table tableName="jsh_materialproperty" domainObjectName="MaterialProperty"></table>
<table tableName="jsh_person" domainObjectName="Person"></table>
<table tableName="jsh_role" domainObjectName="Role"></table>
<table tableName="jsh_supplier" domainObjectName="Supplier"></table>
<table tableName="jsh_supplier" domainObjectName="Supplier"></table>
-->
<table
tableName=
"jsh_systemconfig"
domainObjectName=
"SystemConfig"
></table>
<table tableName="jsh_unit" domainObjectName="Unit"></table>
<!--
<table tableName="jsh_unit" domainObjectName="Unit"></table>
<table tableName="jsh_user" domainObjectName="User"></table>
<table tableName="jsh_userbusiness" domainObjectName="UserBusiness"></table>
-->
<!--
<table tableName="jsh_serial_number" domainObjectName="SerialNumber"></table>-->
<table tableName="jsh_userbusiness" domainObjectName="UserBusiness"></table>
<table tableName="jsh_serial_number" domainObjectName="SerialNumber"></table>-->
<table
tableName=
"jsh_organization"
domainObjectName=
"Organization"
></table>
<!--<table tableName="jsh_orga_user_rel" domainObjectName="OrgaUserRel"></table>-->
</context>
...
...
Prev
1
2
Next
Write
Preview
Supports
Markdown
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