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
07259995
Commit
07259995
authored
Apr 07, 2018
by
AlanGao
Browse files
update
parent
458409b4
Changes
205
Hide whitespace changes
Inline
Side-by-side
src/main/java/com/jsh/model/po/Assetname.java
View file @
07259995
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
Assetname
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
assetname
;
private
Short
isystem
;
private
Category
category
;
private
String
description
;
private
Short
isconsumables
;
public
Assetname
()
{
}
public
Assetname
(
Long
id
)
{
this
.
id
=
id
;
}
public
Assetname
(
String
assetname
,
Short
isystem
,
String
description
,
Short
isconsumables
,
Category
category
)
{
this
.
assetname
=
assetname
;
this
.
isystem
=
isystem
;
this
.
description
=
description
;
this
.
isconsumables
=
isconsumables
;
this
.
category
=
category
;
}
public
Long
getId
()
{
return
this
.
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getAssetname
()
{
return
this
.
assetname
;
}
public
void
setAssetname
(
String
assetname
)
{
this
.
assetname
=
assetname
;
}
public
Short
getIsystem
()
{
return
this
.
isystem
;
}
public
void
setIsystem
(
Short
isystem
)
{
this
.
isystem
=
isystem
;
}
public
String
getDescription
()
{
return
this
.
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
Short
getIsconsumables
()
{
return
this
.
isconsumables
;
}
public
void
setIsconsumables
(
Short
isconsumables
)
{
this
.
isconsumables
=
isconsumables
;
}
public
Category
getCategory
()
{
public
class
Assetname
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
assetname
;
private
Short
isystem
;
private
Category
category
;
private
String
description
;
private
Short
isconsumables
;
public
Assetname
()
{
}
public
Assetname
(
Long
id
)
{
this
.
id
=
id
;
}
public
Assetname
(
String
assetname
,
Short
isystem
,
String
description
,
Short
isconsumables
,
Category
category
)
{
this
.
assetname
=
assetname
;
this
.
isystem
=
isystem
;
this
.
description
=
description
;
this
.
isconsumables
=
isconsumables
;
this
.
category
=
category
;
}
public
Long
getId
()
{
return
this
.
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getAssetname
()
{
return
this
.
assetname
;
}
public
void
setAssetname
(
String
assetname
)
{
this
.
assetname
=
assetname
;
}
public
Short
getIsystem
()
{
return
this
.
isystem
;
}
public
void
setIsystem
(
Short
isystem
)
{
this
.
isystem
=
isystem
;
}
public
String
getDescription
()
{
return
this
.
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
Short
getIsconsumables
()
{
return
this
.
isconsumables
;
}
public
void
setIsconsumables
(
Short
isconsumables
)
{
this
.
isconsumables
=
isconsumables
;
}
public
Category
getCategory
()
{
return
category
;
}
public
void
setCategory
(
Category
category
)
{
public
void
setCategory
(
Category
category
)
{
this
.
category
=
category
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/Basicuser.java
View file @
07259995
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
Basicuser
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
username
;
private
String
loginame
;
private
String
password
;
private
String
position
;
private
String
department
;
private
String
email
;
private
String
phonenum
;
private
Short
ismanager
;
private
Short
isystem
;
private
Short
status
;
private
String
description
;
private
String
remark
;
public
Basicuser
()
{
}
public
Basicuser
(
Long
id
)
{
this
.
id
=
id
;
}
public
Basicuser
(
String
username
,
String
loginame
,
String
password
,
String
position
,
String
department
,
String
email
,
String
phonenum
,
Short
ismanager
,
Short
isystem
,
Short
status
,
String
description
,
String
remark
)
{
this
.
username
=
username
;
this
.
loginame
=
loginame
;
this
.
password
=
password
;
this
.
position
=
position
;
this
.
department
=
department
;
this
.
email
=
email
;
this
.
phonenum
=
phonenum
;
this
.
ismanager
=
ismanager
;
this
.
isystem
=
isystem
;
this
.
status
=
status
;
this
.
description
=
description
;
this
.
remark
=
remark
;
}
public
Long
getId
()
{
return
this
.
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getUsername
()
{
return
this
.
username
;
}
public
void
setUsername
(
String
username
)
{
this
.
username
=
username
;
}
public
String
getLoginame
()
{
return
this
.
loginame
;
}
public
void
setLoginame
(
String
loginame
)
{
this
.
loginame
=
loginame
;
}
public
String
getPassword
()
{
return
this
.
password
;
}
public
void
setPassword
(
String
password
)
{
this
.
password
=
password
;
}
public
String
getPosition
()
{
return
this
.
position
;
}
public
void
setPosition
(
String
position
)
{
this
.
position
=
position
;
}
public
String
getDepartment
()
{
return
this
.
department
;
}
public
void
setDepartment
(
String
department
)
{
this
.
department
=
department
;
}
public
String
getEmail
()
{
return
this
.
email
;
}
public
void
setEmail
(
String
email
)
{
this
.
email
=
email
;
}
public
String
getPhonenum
()
{
return
this
.
phonenum
;
}
public
void
setPhonenum
(
String
phonenum
)
{
this
.
phonenum
=
phonenum
;
}
public
Short
getIsmanager
()
{
return
this
.
ismanager
;
}
public
void
setIsmanager
(
Short
ismanager
)
{
this
.
ismanager
=
ismanager
;
}
public
Short
getIsystem
()
{
return
this
.
isystem
;
}
public
void
setIsystem
(
Short
isystem
)
{
this
.
isystem
=
isystem
;
}
public
Short
getStatus
()
{
return
this
.
status
;
}
public
void
setStatus
(
Short
status
)
{
this
.
status
=
status
;
}
public
String
getDescription
()
{
return
this
.
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
String
getRemark
()
{
return
this
.
remark
;
}
public
void
setRemark
(
String
remark
)
{
this
.
remark
=
remark
;
}
public
class
Basicuser
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
username
;
private
String
loginame
;
private
String
password
;
private
String
position
;
private
String
department
;
private
String
email
;
private
String
phonenum
;
private
Short
ismanager
;
private
Short
isystem
;
private
Short
status
;
private
String
description
;
private
String
remark
;
public
Basicuser
()
{
}
public
Basicuser
(
Long
id
)
{
this
.
id
=
id
;
}
public
Basicuser
(
String
username
,
String
loginame
,
String
password
,
String
position
,
String
department
,
String
email
,
String
phonenum
,
Short
ismanager
,
Short
isystem
,
Short
status
,
String
description
,
String
remark
)
{
this
.
username
=
username
;
this
.
loginame
=
loginame
;
this
.
password
=
password
;
this
.
position
=
position
;
this
.
department
=
department
;
this
.
email
=
email
;
this
.
phonenum
=
phonenum
;
this
.
ismanager
=
ismanager
;
this
.
isystem
=
isystem
;
this
.
status
=
status
;
this
.
description
=
description
;
this
.
remark
=
remark
;
}
public
Long
getId
()
{
return
this
.
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getUsername
()
{
return
this
.
username
;
}
public
void
setUsername
(
String
username
)
{
this
.
username
=
username
;
}
public
String
getLoginame
()
{
return
this
.
loginame
;
}
public
void
setLoginame
(
String
loginame
)
{
this
.
loginame
=
loginame
;
}
public
String
getPassword
()
{
return
this
.
password
;
}
public
void
setPassword
(
String
password
)
{
this
.
password
=
password
;
}
public
String
getPosition
()
{
return
this
.
position
;
}
public
void
setPosition
(
String
position
)
{
this
.
position
=
position
;
}
public
String
getDepartment
()
{
return
this
.
department
;
}
public
void
setDepartment
(
String
department
)
{
this
.
department
=
department
;
}
public
String
getEmail
()
{
return
this
.
email
;
}
public
void
setEmail
(
String
email
)
{
this
.
email
=
email
;
}
public
String
getPhonenum
()
{
return
this
.
phonenum
;
}
public
void
setPhonenum
(
String
phonenum
)
{
this
.
phonenum
=
phonenum
;
}
public
Short
getIsmanager
()
{
return
this
.
ismanager
;
}
public
void
setIsmanager
(
Short
ismanager
)
{
this
.
ismanager
=
ismanager
;
}
public
Short
getIsystem
()
{
return
this
.
isystem
;
}
public
void
setIsystem
(
Short
isystem
)
{
this
.
isystem
=
isystem
;
}
public
Short
getStatus
()
{
return
this
.
status
;
}
public
void
setStatus
(
Short
status
)
{
this
.
status
=
status
;
}
public
String
getDescription
()
{
return
this
.
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
String
getRemark
()
{
return
this
.
remark
;
}
public
void
setRemark
(
String
remark
)
{
this
.
remark
=
remark
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/Category.java
View file @
07259995
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
Category
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
assetname
;
private
Short
isystem
;
private
String
description
;
public
class
Category
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
assetname
;
private
Short
isystem
;
private
String
description
;
public
Category
()
{
}
public
Category
(
Long
id
)
{
this
.
id
=
id
;
}
public
Category
()
{
public
Category
(
String
assetname
,
Short
isystem
,
String
description
)
{
this
.
assetname
=
assetname
;
this
.
isystem
=
isystem
;
this
.
description
=
description
;
}
}
public
Long
getId
()
{
return
this
.
id
;
}
public
Category
(
Long
id
)
{
this
.
id
=
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
Category
(
String
assetname
,
Short
isystem
,
String
description
)
{
this
.
assetname
=
assetname
;
this
.
isystem
=
isystem
;
this
.
description
=
description
;
}
public
String
getAssetname
()
{
return
this
.
assetname
;
}
public
Long
getId
()
{
return
this
.
id
;
}
public
void
setAssetname
(
String
assetname
)
{
this
.
assetname
=
assetname
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
Short
getIsystem
()
{
return
this
.
isystem
;
}
public
String
getAssetname
()
{
return
this
.
assetname
;
}
public
void
setIsystem
(
Short
isystem
)
{
this
.
isystem
=
isystem
;
}
public
void
setAssetname
(
String
assetname
)
{
this
.
assetname
=
assetname
;
}
public
String
getDescription
()
{
return
this
.
description
;
}
public
Short
getIsystem
()
{
return
this
.
isystem
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
void
setIsystem
(
Short
isystem
)
{
this
.
isystem
=
isystem
;
}
public
String
getDescription
()
{
return
this
.
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/Depot.java
View file @
07259995
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
Depot
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
name
;
private
String
address
;
private
Double
warehousing
;
private
Double
truckage
;
private
Integer
type
;
private
String
sort
;
private
String
remark
;
public
Depot
()
{
}
public
Depot
(
Long
id
)
{
this
.
id
=
id
;
}
public
Depot
(
String
name
,
String
address
,
Double
warehousing
,
Double
truckage
,
Integer
type
,
String
sort
,
String
remark
)
{
this
.
name
=
name
;
this
.
address
=
address
;
this
.
warehousing
=
warehousing
;
this
.
truckage
=
truckage
;
this
.
type
=
type
;
this
.
sort
=
sort
;
this
.
remark
=
remark
;
}
public
Long
getId
()
{
return
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getName
()
{
return
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
String
getAddress
()
{
return
address
;
}
public
void
setAddress
(
String
address
)
{
this
.
address
=
address
;
}
public
Double
getWarehousing
()
{
return
warehousing
;
}
public
void
setWarehousing
(
Double
warehousing
)
{
this
.
warehousing
=
warehousing
;
}
public
Double
getTruckage
()
{
return
truckage
;
}
public
void
setTruckage
(
Double
truckage
)
{
this
.
truckage
=
truckage
;
}
public
Integer
getType
()
{
return
type
;
}
public
void
setType
(
Integer
type
)
{
this
.
type
=
type
;
}
public
String
getSort
()
{
return
sort
;
}
public
void
setSort
(
String
sort
)
{
this
.
sort
=
sort
;
}
public
String
getRemark
()
{
return
remark
;
}
public
void
setRemark
(
String
remark
)
{
this
.
remark
=
remark
;
}
public
class
Depot
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
name
;
private
String
address
;
private
Double
warehousing
;
private
Double
truckage
;
private
Integer
type
;
private
String
sort
;
private
String
remark
;
public
Depot
()
{
}
public
Depot
(
Long
id
)
{
this
.
id
=
id
;
}
public
Depot
(
String
name
,
String
address
,
Double
warehousing
,
Double
truckage
,
Integer
type
,
String
sort
,
String
remark
)
{
this
.
name
=
name
;
this
.
address
=
address
;
this
.
warehousing
=
warehousing
;
this
.
truckage
=
truckage
;
this
.
type
=
type
;
this
.
sort
=
sort
;
this
.
remark
=
remark
;
}
public
Long
getId
()
{
return
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getName
()
{
return
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
String
getAddress
()
{
return
address
;
}
public
void
setAddress
(
String
address
)
{
this
.
address
=
address
;
}
public
Double
getWarehousing
()
{
return
warehousing
;
}
public
void
setWarehousing
(
Double
warehousing
)
{
this
.
warehousing
=
warehousing
;
}
public
Double
getTruckage
()
{
return
truckage
;
}
public
void
setTruckage
(
Double
truckage
)
{
this
.
truckage
=
truckage
;
}
public
Integer
getType
()
{
return
type
;
}
public
void
setType
(
Integer
type
)
{
this
.
type
=
type
;
}
public
String
getSort
()
{
return
sort
;
}
public
void
setSort
(
String
sort
)
{
this
.
sort
=
sort
;
}
public
String
getRemark
()
{
return
remark
;
}
public
void
setRemark
(
String
remark
)
{
this
.
remark
=
remark
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/DepotHead.java
View file @
07259995
...
...
@@ -3,301 +3,298 @@ package com.jsh.model.po;
import
java.sql.Timestamp
;
@SuppressWarnings
(
"serial"
)
public
class
DepotHead
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Type
;
private
String
SubType
;
private
Depot
ProjectId
;
private
String
DefaultNumber
;
private
String
Number
;
private
String
OperPersonName
;
private
Timestamp
CreateTime
;
private
Timestamp
OperTime
;
private
Supplier
OrganId
;
private
Person
HandsPersonId
;
private
String
Salesman
;
//业务员(可以多个)[2][3]
private
Account
AccountId
;
private
Double
ChangeAmount
;
private
String
AccountIdList
;
//多账户ID列表 [2][3]
private
String
AccountMoneyList
;
//多账户金额列表 [{"[2]",22},{"[3]",33}]
private
Double
Discount
;
//优惠率 0.10
private
Double
DiscountMoney
;
//优惠金额 10
private
Double
DiscountLastMoney
;
//优惠后金额 90
private
Double
OtherMoney
;
//销售或采购费用 100
private
String
OtherMoneyList
;
//销售或采购费用涉及项目Id数组(包括快递、招待等)[2][3]
private
String
OtherMoneyItem
;
//销售费用涉及项目(包括快递、招待等) [{"[2]",22},{"[3]",33}]
private
Integer
AccountDay
;
//结算天数
private
Depot
AllocationProjectId
;
private
Double
TotalPrice
;
private
String
PayType
;
private
Boolean
Status
=
false
;
//单据状态
private
String
Remark
;
public
DepotHead
()
{
}
public
DepotHead
(
Long
Id
)
{
this
.
Id
=
Id
;
}
public
DepotHead
(
String
type
,
String
subType
,
Depot
projectId
,
String
defaultNumber
,
String
number
,
String
operPersonName
,
Timestamp
createTime
,
Timestamp
operTime
,
Supplier
organId
,
Person
handsPersonId
,
String
salesman
,
String
accountIdList
,
String
accountMoneyList
,
Double
discount
,
Double
discountMoney
,
Double
discountLastMoney
,
Double
otherMoney
,
String
otherMoneyItem
,
Integer
accountDay
,
Account
accountId
,
Double
changeAmount
,
Depot
allocationProjectId
,
Double
totalPrice
,
String
payType
,
Boolean
status
,
String
remark
)
{
super
();
Type
=
type
;
SubType
=
subType
;
ProjectId
=
projectId
;
DefaultNumber
=
defaultNumber
;
Number
=
number
;
OperPersonName
=
operPersonName
;
CreateTime
=
createTime
;
OperTime
=
operTime
;
OrganId
=
organId
;
HandsPersonId
=
handsPersonId
;
Salesman
=
salesman
;
AccountIdList
=
accountIdList
;
AccountMoneyList
=
accountMoneyList
;
Discount
=
discount
;
DiscountMoney
=
discountMoney
;
DiscountLastMoney
=
discountLastMoney
;
OtherMoney
=
otherMoney
;
OtherMoneyItem
=
otherMoneyItem
;
AccountDay
=
accountDay
;
AccountId
=
accountId
;
ChangeAmount
=
changeAmount
;
AllocationProjectId
=
allocationProjectId
;
TotalPrice
=
totalPrice
;
PayType
=
payType
;
Status
=
status
;
Remark
=
remark
;
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
String
getType
()
{
return
Type
;
}
public
void
setType
(
String
type
)
{
Type
=
type
;
}
public
String
getSubType
()
{
return
SubType
;
}
public
void
setSubType
(
String
subType
)
{
SubType
=
subType
;
}
public
Depot
getProjectId
()
{
return
ProjectId
;
}
public
void
setProjectId
(
Depot
projectId
)
{
ProjectId
=
projectId
;
}
public
String
getDefaultNumber
()
{
return
DefaultNumber
;
}
public
void
setDefaultNumber
(
String
defaultNumber
)
{
DefaultNumber
=
defaultNumber
;
}
public
String
getNumber
()
{
return
Number
;
}
public
void
setNumber
(
String
number
)
{
Number
=
number
;
}
public
String
getOperPersonName
()
{
return
OperPersonName
;
}
public
void
setOperPersonName
(
String
operPersonName
)
{
OperPersonName
=
operPersonName
;
}
public
Timestamp
getCreateTime
()
{
return
CreateTime
;
}
public
void
setCreateTime
(
Timestamp
createTime
)
{
CreateTime
=
createTime
;
}
public
Timestamp
getOperTime
()
{
return
OperTime
;
}
public
void
setOperTime
(
Timestamp
operTime
)
{
OperTime
=
operTime
;
}
public
Supplier
getOrganId
()
{
return
OrganId
;
}
public
void
setOrganId
(
Supplier
organId
)
{
OrganId
=
organId
;
}
public
Person
getHandsPersonId
()
{
return
HandsPersonId
;
}
public
void
setHandsPersonId
(
Person
handsPersonId
)
{
HandsPersonId
=
handsPersonId
;
}
public
Account
getAccountId
()
{
return
AccountId
;
}
public
void
setAccountId
(
Account
accountId
)
{
AccountId
=
accountId
;
}
public
Double
getChangeAmount
()
{
return
ChangeAmount
;
}
public
class
DepotHead
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Type
;
private
String
SubType
;
private
Depot
ProjectId
;
private
String
DefaultNumber
;
private
String
Number
;
private
String
OperPersonName
;
private
Timestamp
CreateTime
;
private
Timestamp
OperTime
;
private
Supplier
OrganId
;
private
Person
HandsPersonId
;
private
String
Salesman
;
//业务员(可以多个)[2][3]
private
Account
AccountId
;
private
Double
ChangeAmount
;
private
String
AccountIdList
;
//多账户ID列表 [2][3]
private
String
AccountMoneyList
;
//多账户金额列表 [{"[2]",22},{"[3]",33}]
private
Double
Discount
;
//优惠率 0.10
private
Double
DiscountMoney
;
//优惠金额 10
private
Double
DiscountLastMoney
;
//优惠后金额 90
private
Double
OtherMoney
;
//销售或采购费用 100
private
String
OtherMoneyList
;
//销售或采购费用涉及项目Id数组(包括快递、招待等)[2][3]
private
String
OtherMoneyItem
;
//销售费用涉及项目(包括快递、招待等) [{"[2]",22},{"[3]",33}]
private
Integer
AccountDay
;
//结算天数
private
Depot
AllocationProjectId
;
private
Double
TotalPrice
;
private
String
PayType
;
private
Boolean
Status
=
false
;
//单据状态
private
String
Remark
;
public
DepotHead
()
{
}
public
DepotHead
(
Long
Id
)
{
this
.
Id
=
Id
;
}
public
DepotHead
(
String
type
,
String
subType
,
Depot
projectId
,
String
defaultNumber
,
String
number
,
String
operPersonName
,
Timestamp
createTime
,
Timestamp
operTime
,
Supplier
organId
,
Person
handsPersonId
,
String
salesman
,
String
accountIdList
,
String
accountMoneyList
,
Double
discount
,
Double
discountMoney
,
Double
discountLastMoney
,
Double
otherMoney
,
String
otherMoneyItem
,
Integer
accountDay
,
Account
accountId
,
Double
changeAmount
,
Depot
allocationProjectId
,
Double
totalPrice
,
String
payType
,
Boolean
status
,
String
remark
)
{
super
();
Type
=
type
;
SubType
=
subType
;
ProjectId
=
projectId
;
DefaultNumber
=
defaultNumber
;
Number
=
number
;
OperPersonName
=
operPersonName
;
CreateTime
=
createTime
;
OperTime
=
operTime
;
OrganId
=
organId
;
HandsPersonId
=
handsPersonId
;
Salesman
=
salesman
;
AccountIdList
=
accountIdList
;
AccountMoneyList
=
accountMoneyList
;
Discount
=
discount
;
DiscountMoney
=
discountMoney
;
DiscountLastMoney
=
discountLastMoney
;
OtherMoney
=
otherMoney
;
OtherMoneyItem
=
otherMoneyItem
;
AccountDay
=
accountDay
;
AccountId
=
accountId
;
ChangeAmount
=
changeAmount
;
AllocationProjectId
=
allocationProjectId
;
TotalPrice
=
totalPrice
;
PayType
=
payType
;
Status
=
status
;
Remark
=
remark
;
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
String
getType
()
{
return
Type
;
}
public
void
setType
(
String
type
)
{
Type
=
type
;
}
public
String
getSubType
()
{
return
SubType
;
}
public
void
setSubType
(
String
subType
)
{
SubType
=
subType
;
}
public
Depot
getProjectId
()
{
return
ProjectId
;
}
public
void
setProjectId
(
Depot
projectId
)
{
ProjectId
=
projectId
;
}
public
String
getDefaultNumber
()
{
return
DefaultNumber
;
}
public
void
setDefaultNumber
(
String
defaultNumber
)
{
DefaultNumber
=
defaultNumber
;
}
public
String
getNumber
()
{
return
Number
;
}
public
void
setNumber
(
String
number
)
{
Number
=
number
;
}
public
String
getOperPersonName
()
{
return
OperPersonName
;
}
public
void
setOperPersonName
(
String
operPersonName
)
{
OperPersonName
=
operPersonName
;
}
public
Timestamp
getCreateTime
()
{
return
CreateTime
;
}
public
void
setCreateTime
(
Timestamp
createTime
)
{
CreateTime
=
createTime
;
}
public
Timestamp
getOperTime
()
{
return
OperTime
;
}
public
void
setOperTime
(
Timestamp
operTime
)
{
OperTime
=
operTime
;
}
public
Supplier
getOrganId
()
{
return
OrganId
;
}
public
void
setOrganId
(
Supplier
organId
)
{
OrganId
=
organId
;
}
public
Person
getHandsPersonId
()
{
return
HandsPersonId
;
}
public
void
setHandsPersonId
(
Person
handsPersonId
)
{
HandsPersonId
=
handsPersonId
;
}
public
Account
getAccountId
()
{
return
AccountId
;
}
public
void
setAccountId
(
Account
accountId
)
{
AccountId
=
accountId
;
}
public
void
setChangeAmount
(
Double
c
hangeAmount
)
{
ChangeAmount
=
c
hangeAmount
;
}
public
Double
getC
hangeAmount
(
)
{
return
C
hangeAmount
;
}
public
Depot
getAllocationProjectId
(
)
{
return
AllocationProjectId
;
}
public
void
setChangeAmount
(
Double
changeAmount
)
{
ChangeAmount
=
changeAmount
;
}
public
void
s
etAllocationProjectId
(
Depot
allocationProjectId
)
{
AllocationProjectId
=
a
llocationProjectId
;
}
public
Depot
g
etAllocationProjectId
()
{
return
A
llocationProjectId
;
}
public
Double
getT
otal
Price
(
)
{
return
TotalPrice
;
}
public
void
setAllocationProjectId
(
Dep
ot
al
locationProjectId
)
{
AllocationProjectId
=
allocationProjectId
;
}
public
void
setTotalPrice
(
Double
t
otalPrice
)
{
TotalPrice
=
t
otalPrice
;
}
public
Double
getT
otalPrice
(
)
{
return
T
otalPrice
;
}
public
String
getPayType
()
{
return
PayType
;
}
public
void
setPayType
(
String
payType
)
{
PayType
=
payType
;
}
public
String
getRemark
()
{
return
Remark
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
public
String
getSalesman
()
{
return
Salesman
;
}
public
void
setSalesman
(
String
salesman
)
{
Salesman
=
salesman
;
}
public
String
getAccountIdList
()
{
return
AccountIdList
;
}
public
void
setAccountIdList
(
String
accountIdList
)
{
AccountIdList
=
accountIdList
;
}
public
String
getAccountMoneyList
()
{
return
AccountMoneyList
;
}
public
void
setAccountMoneyList
(
String
accountMoneyList
)
{
AccountMoneyList
=
accountMoneyList
;
}
public
Double
getDiscount
()
{
return
Discount
;
}
public
void
setDiscount
(
Double
discount
)
{
Discount
=
discount
;
}
public
Double
getDiscountMoney
()
{
return
DiscountMoney
;
}
public
void
setDiscountMoney
(
Double
discountMoney
)
{
DiscountMoney
=
discountMoney
;
}
public
Double
getDiscountLastMoney
()
{
return
DiscountLastMoney
;
}
public
void
setDiscountLastMoney
(
Double
discountLastMoney
)
{
DiscountLastMoney
=
discountLastMoney
;
}
public
Double
getOtherMoney
()
{
return
OtherMoney
;
}
public
void
setOtherMoney
(
Double
otherMoney
)
{
OtherMoney
=
otherMoney
;
}
public
void
setTotalPrice
(
Double
totalPrice
)
{
TotalPrice
=
totalPrice
;
}
public
String
get
OtherMoneyList
()
{
return
OtherMoneyList
;
}
public
String
get
PayType
()
{
return
PayType
;
}
public
void
set
OtherMoneyList
(
String
otherMoneyList
)
{
OtherMoneyList
=
otherMoneyList
;
}
public
void
set
PayType
(
String
payType
)
{
PayType
=
payType
;
}
public
String
get
OtherMoneyItem
()
{
return
OtherMoneyItem
;
}
public
String
get
Remark
()
{
return
Remark
;
}
public
void
set
OtherMoneyItem
(
String
otherMoneyItem
)
{
OtherMoneyItem
=
otherMoneyItem
;
}
public
void
set
Remark
(
String
remark
)
{
Remark
=
remark
;
}
public
Integer
getAccountDay
()
{
return
AccountDay
;
}
public
String
getSalesman
()
{
return
Salesman
;
}
public
void
set
AccountDay
(
Integer
accountDay
)
{
AccountDay
=
accountDay
;
}
public
void
set
Salesman
(
String
salesman
)
{
Salesman
=
salesman
;
}
public
Boolean
getStatus
()
{
return
Status
;
}
public
String
getAccountIdList
()
{
return
AccountIdList
;
}
public
void
setStatus
(
Boolean
status
)
{
Status
=
status
;
}
public
void
setAccountIdList
(
String
accountIdList
)
{
AccountIdList
=
accountIdList
;
}
public
String
getAccountMoneyList
()
{
return
AccountMoneyList
;
}
public
void
setAccountMoneyList
(
String
accountMoneyList
)
{
AccountMoneyList
=
accountMoneyList
;
}
public
Double
getDiscount
()
{
return
Discount
;
}
public
void
setDiscount
(
Double
discount
)
{
Discount
=
discount
;
}
public
Double
getDiscountMoney
()
{
return
DiscountMoney
;
}
public
void
setDiscountMoney
(
Double
discountMoney
)
{
DiscountMoney
=
discountMoney
;
}
public
Double
getDiscountLastMoney
()
{
return
DiscountLastMoney
;
}
public
void
setDiscountLastMoney
(
Double
discountLastMoney
)
{
DiscountLastMoney
=
discountLastMoney
;
}
public
Double
getOtherMoney
()
{
return
OtherMoney
;
}
public
void
setOtherMoney
(
Double
otherMoney
)
{
OtherMoney
=
otherMoney
;
}
public
String
getOtherMoneyList
()
{
return
OtherMoneyList
;
}
public
void
setOtherMoneyList
(
String
otherMoneyList
)
{
OtherMoneyList
=
otherMoneyList
;
}
public
String
getOtherMoneyItem
()
{
return
OtherMoneyItem
;
}
public
void
setOtherMoneyItem
(
String
otherMoneyItem
)
{
OtherMoneyItem
=
otherMoneyItem
;
}
public
Integer
getAccountDay
()
{
return
AccountDay
;
}
public
void
setAccountDay
(
Integer
accountDay
)
{
AccountDay
=
accountDay
;
}
public
Boolean
getStatus
()
{
return
Status
;
}
public
void
setStatus
(
Boolean
status
)
{
Status
=
status
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/DepotItem.java
View file @
07259995
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
DepotItem
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
DepotHead
HeaderId
;
private
Material
MaterialId
;
private
String
MUnit
;
//计量单位
private
Double
OperNumber
;
private
Double
BasicNumber
;
private
Double
UnitPrice
;
private
Double
TaxUnitPrice
;
//含税单价
private
Double
AllPrice
;
private
String
Remark
;
private
String
Img
;
private
Depot
DepotId
;
//仓库ID
private
Depot
AnotherDepotId
;
//对方仓库Id
private
Double
TaxRate
;
//税率
private
Double
TaxMoney
;
//税额
private
Double
TaxLastMoney
;
//价税合计
private
String
OtherField1
;
//自定义字段1-品名
private
String
OtherField2
;
//自定义字段2-型号
private
String
OtherField3
;
//自定义字段3-制造商
private
String
OtherField4
;
//自定义字段4
private
String
OtherField5
;
//自定义字段5
private
String
MType
;
//商品类型
public
DepotItem
()
{
}
public
DepotItem
(
Long
Id
)
{
this
.
Id
=
Id
;
}
public
DepotItem
(
DepotHead
headerId
,
Material
materialId
,
String
mUnit
,
Double
operNumber
,
Double
basicNumber
,
Double
unitPrice
,
Double
taxUnitPrice
,
Double
allPrice
,
String
remark
,
String
img
,
Depot
depotId
,
Depot
anotherDepotId
,
Double
taxRate
,
Double
taxMoney
,
Double
taxLastMoney
,
String
otherField1
,
String
otherField2
,
String
otherField3
,
String
otherField4
,
String
otherField5
,
String
mType
)
{
super
();
HeaderId
=
headerId
;
MaterialId
=
materialId
;
MUnit
=
mUnit
;
OperNumber
=
operNumber
;
BasicNumber
=
basicNumber
;
UnitPrice
=
unitPrice
;
TaxUnitPrice
=
taxUnitPrice
;
AllPrice
=
allPrice
;
Remark
=
remark
;
Img
=
img
;
DepotId
=
depotId
;
AnotherDepotId
=
anotherDepotId
;
TaxRate
=
taxRate
;
TaxMoney
=
taxMoney
;
TaxLastMoney
=
taxLastMoney
;
OtherField1
=
otherField1
;
OtherField2
=
otherField2
;
OtherField3
=
otherField3
;
OtherField4
=
otherField4
;
OtherField5
=
otherField5
;
MType
=
mType
;
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
DepotHead
getHeaderId
()
{
return
HeaderId
;
}
public
void
setHeaderId
(
DepotHead
headerId
)
{
HeaderId
=
headerId
;
}
public
Material
getMaterialId
()
{
return
MaterialId
;
}
public
void
setMaterialId
(
Material
materialId
)
{
MaterialId
=
materialId
;
}
public
String
getMUnit
()
{
return
MUnit
;
}
public
void
setMUnit
(
String
MUnit
)
{
this
.
MUnit
=
MUnit
;
}
public
Double
getTaxUnitPrice
()
{
return
TaxUnitPrice
;
}
public
void
setTaxUnitPrice
(
Double
taxUnitPrice
)
{
TaxUnitPrice
=
taxUnitPrice
;
}
public
Double
getOperNumber
()
{
return
OperNumber
;
}
public
void
setOperNumber
(
Double
operNumber
)
{
OperNumber
=
operNumber
;
}
public
Double
getBasicNumber
()
{
return
BasicNumber
;
}
public
void
setBasicNumber
(
Double
basicNumber
)
{
BasicNumber
=
basicNumber
;
}
public
Double
getUnitPrice
()
{
return
UnitPrice
;
}
public
void
setUnitPrice
(
Double
unitPrice
)
{
UnitPrice
=
unitPrice
;
}
public
Double
getAllPrice
()
{
return
AllPrice
;
}
public
void
setAllPrice
(
Double
allPrice
)
{
AllPrice
=
allPrice
;
}
public
String
getRemark
()
{
return
Remark
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
public
String
getImg
()
{
return
Img
;
}
public
void
setImg
(
String
img
)
{
Img
=
img
;
}
public
Depot
getDepotId
()
{
return
DepotId
;
}
public
void
setDepotId
(
Depot
depotId
)
{
DepotId
=
depotId
;
}
public
Depot
getAnotherDepotId
()
{
return
AnotherDepotId
;
}
public
class
DepotItem
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
DepotHead
HeaderId
;
private
Material
MaterialId
;
private
String
MUnit
;
//计量单位
private
Double
OperNumber
;
private
Double
BasicNumber
;
private
Double
UnitPrice
;
private
Double
TaxUnitPrice
;
//含税单价
private
Double
AllPrice
;
private
String
Remark
;
private
String
Img
;
private
Depot
DepotId
;
//仓库ID
private
Depot
AnotherDepotId
;
//对方仓库Id
private
Double
TaxRate
;
//税率
private
Double
TaxMoney
;
//税额
private
Double
TaxLastMoney
;
//价税合计
private
String
OtherField1
;
//自定义字段1-品名
private
String
OtherField2
;
//自定义字段2-型号
private
String
OtherField3
;
//自定义字段3-制造商
private
String
OtherField4
;
//自定义字段4
private
String
OtherField5
;
//自定义字段5
private
String
MType
;
//商品类型
public
DepotItem
()
{
}
public
DepotItem
(
Long
Id
)
{
this
.
Id
=
Id
;
}
public
DepotItem
(
DepotHead
headerId
,
Material
materialId
,
String
mUnit
,
Double
operNumber
,
Double
basicNumber
,
Double
unitPrice
,
Double
taxUnitPrice
,
Double
allPrice
,
String
remark
,
String
img
,
Depot
depotId
,
Depot
anotherDepotId
,
Double
taxRate
,
Double
taxMoney
,
Double
taxLastMoney
,
String
otherField1
,
String
otherField2
,
String
otherField3
,
String
otherField4
,
String
otherField5
,
String
mType
)
{
super
();
HeaderId
=
headerId
;
MaterialId
=
materialId
;
MUnit
=
mUnit
;
OperNumber
=
operNumber
;
BasicNumber
=
basicNumber
;
UnitPrice
=
unitPrice
;
TaxUnitPrice
=
taxUnitPrice
;
AllPrice
=
allPrice
;
Remark
=
remark
;
Img
=
img
;
DepotId
=
depotId
;
AnotherDepotId
=
anotherDepotId
;
TaxRate
=
taxRate
;
TaxMoney
=
taxMoney
;
TaxLastMoney
=
taxLastMoney
;
OtherField1
=
otherField1
;
OtherField2
=
otherField2
;
OtherField3
=
otherField3
;
OtherField4
=
otherField4
;
OtherField5
=
otherField5
;
MType
=
mType
;
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
DepotHead
getHeaderId
()
{
return
HeaderId
;
}
public
void
setHeaderId
(
DepotHead
headerId
)
{
HeaderId
=
headerId
;
}
public
Material
getMaterialId
()
{
return
MaterialId
;
}
public
void
setMaterialId
(
Material
materialId
)
{
MaterialId
=
materialId
;
}
public
String
getMUnit
()
{
return
MUnit
;
}
public
void
setMUnit
(
String
MUnit
)
{
this
.
MUnit
=
MUnit
;
}
public
Double
getTaxUnitPrice
()
{
return
TaxUnitPrice
;
}
public
void
setTaxUnitPrice
(
Double
taxUnitPrice
)
{
TaxUnitPrice
=
taxUnitPrice
;
}
public
Double
getOperNumber
()
{
return
OperNumber
;
}
public
void
setOperNumber
(
Double
operNumber
)
{
OperNumber
=
operNumber
;
}
public
Double
getBasicNumber
()
{
return
BasicNumber
;
}
public
void
setBasicNumber
(
Double
basicNumber
)
{
BasicNumber
=
basicNumber
;
}
public
Double
getUnitPrice
()
{
return
UnitPrice
;
}
public
void
setUnitPrice
(
Double
unitPrice
)
{
UnitPrice
=
unitPrice
;
}
public
Double
getAllPrice
()
{
return
AllPrice
;
}
public
void
setAllPrice
(
Double
allPrice
)
{
AllPrice
=
allPrice
;
}
public
String
getRemark
()
{
return
Remark
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
public
String
getImg
()
{
return
Img
;
}
public
void
setImg
(
String
img
)
{
Img
=
img
;
}
public
Depot
getDepotId
()
{
return
DepotId
;
}
public
void
setDepotId
(
Depot
depotId
)
{
DepotId
=
depotId
;
}
public
Depot
getAnotherDepotId
()
{
return
AnotherDepotId
;
}
public
void
setAnotherDepotId
(
Depot
anotherDepotId
)
{
AnotherDepotId
=
anotherDepotId
;
}
public
void
setAnotherDepotId
(
Depot
anotherDepotId
)
{
AnotherDepotId
=
anotherDepotId
;
}
public
Double
getTaxRate
()
{
return
TaxRate
;
}
public
Double
getTaxRate
()
{
return
TaxRate
;
}
public
void
setTaxRate
(
Double
taxRate
)
{
TaxRate
=
taxRate
;
}
public
void
setTaxRate
(
Double
taxRate
)
{
TaxRate
=
taxRate
;
}
public
Double
getTaxMoney
()
{
return
TaxMoney
;
}
public
Double
getTaxMoney
()
{
return
TaxMoney
;
}
public
void
setTaxMoney
(
Double
taxMoney
)
{
TaxMoney
=
taxMoney
;
}
public
void
setTaxMoney
(
Double
taxMoney
)
{
TaxMoney
=
taxMoney
;
}
public
Double
getTaxLastMoney
()
{
return
TaxLastMoney
;
}
public
Double
getTaxLastMoney
()
{
return
TaxLastMoney
;
}
public
void
setTaxLastMoney
(
Double
taxLastMoney
)
{
TaxLastMoney
=
taxLastMoney
;
}
public
void
setTaxLastMoney
(
Double
taxLastMoney
)
{
TaxLastMoney
=
taxLastMoney
;
}
public
String
getOtherField1
()
{
return
OtherField1
;
}
public
String
getOtherField1
()
{
return
OtherField1
;
}
public
void
setOtherField1
(
String
otherField1
)
{
OtherField1
=
otherField1
;
}
public
void
setOtherField1
(
String
otherField1
)
{
OtherField1
=
otherField1
;
}
public
String
getOtherField2
()
{
return
OtherField2
;
}
public
String
getOtherField2
()
{
return
OtherField2
;
}
public
void
setOtherField2
(
String
otherField2
)
{
OtherField2
=
otherField2
;
}
public
void
setOtherField2
(
String
otherField2
)
{
OtherField2
=
otherField2
;
}
public
String
getOtherField3
()
{
return
OtherField3
;
}
public
String
getOtherField3
()
{
return
OtherField3
;
}
public
void
setOtherField3
(
String
otherField3
)
{
OtherField3
=
otherField3
;
}
public
void
setOtherField3
(
String
otherField3
)
{
OtherField3
=
otherField3
;
}
public
String
getOtherField4
()
{
return
OtherField4
;
}
public
String
getOtherField4
()
{
return
OtherField4
;
}
public
void
setOtherField4
(
String
otherField4
)
{
OtherField4
=
otherField4
;
}
public
void
setOtherField4
(
String
otherField4
)
{
OtherField4
=
otherField4
;
}
public
String
getOtherField5
()
{
return
OtherField5
;
}
public
String
getOtherField5
()
{
return
OtherField5
;
}
public
void
setOtherField5
(
String
otherField5
)
{
OtherField5
=
otherField5
;
}
public
void
setOtherField5
(
String
otherField5
)
{
OtherField5
=
otherField5
;
}
public
String
getMType
()
{
return
MType
;
}
public
String
getMType
()
{
return
MType
;
}
public
void
setMType
(
String
MType
)
{
this
.
MType
=
MType
;
}
public
void
setMType
(
String
MType
)
{
this
.
MType
=
MType
;
}
}
src/main/java/com/jsh/model/po/Functions.java
View file @
07259995
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
Functions
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Number
;
private
String
Name
;
private
String
PNumber
;
private
String
URL
;
private
Boolean
State
;
private
String
Sort
;
private
Boolean
Enabled
;
private
String
Type
;
private
String
PushBtn
;
public
Functions
()
{
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
String
getNumber
()
{
return
Number
;
}
public
void
setNumber
(
String
number
)
{
Number
=
number
;
}
public
String
getName
()
{
return
Name
;
}
public
void
setName
(
String
name
)
{
Name
=
name
;
}
public
String
getPNumber
()
{
return
PNumber
;
}
public
void
setPNumber
(
String
pNumber
)
{
PNumber
=
pNumber
;
}
public
String
getURL
()
{
return
URL
;
}
public
void
setURL
(
String
uRL
)
{
URL
=
uRL
;
}
public
Boolean
getState
()
{
return
State
;
}
public
void
setState
(
Boolean
state
)
{
State
=
state
;
}
public
String
getSort
()
{
return
Sort
;
}
public
void
setSort
(
String
sort
)
{
Sort
=
sort
;
}
public
Boolean
getEnabled
()
{
return
Enabled
;
}
public
void
setEnabled
(
Boolean
enabled
)
{
Enabled
=
enabled
;
}
public
String
getType
()
{
return
Type
;
}
public
void
setType
(
String
type
)
{
Type
=
type
;
}
public
String
getPushBtn
()
{
return
PushBtn
;
}
public
void
setPushBtn
(
String
pushBtn
)
{
PushBtn
=
pushBtn
;
}
public
class
Functions
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Number
;
private
String
Name
;
private
String
PNumber
;
private
String
URL
;
private
Boolean
State
;
private
String
Sort
;
private
Boolean
Enabled
;
private
String
Type
;
private
String
PushBtn
;
public
Functions
()
{
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
String
getNumber
()
{
return
Number
;
}
public
void
setNumber
(
String
number
)
{
Number
=
number
;
}
public
String
getName
()
{
return
Name
;
}
public
void
setName
(
String
name
)
{
Name
=
name
;
}
public
String
getPNumber
()
{
return
PNumber
;
}
public
void
setPNumber
(
String
pNumber
)
{
PNumber
=
pNumber
;
}
public
String
getURL
()
{
return
URL
;
}
public
void
setURL
(
String
uRL
)
{
URL
=
uRL
;
}
public
Boolean
getState
()
{
return
State
;
}
public
void
setState
(
Boolean
state
)
{
State
=
state
;
}
public
String
getSort
()
{
return
Sort
;
}
public
void
setSort
(
String
sort
)
{
Sort
=
sort
;
}
public
Boolean
getEnabled
()
{
return
Enabled
;
}
public
void
setEnabled
(
Boolean
enabled
)
{
Enabled
=
enabled
;
}
public
String
getType
()
{
return
Type
;
}
public
void
setType
(
String
type
)
{
Type
=
type
;
}
public
String
getPushBtn
()
{
return
PushBtn
;
}
public
void
setPushBtn
(
String
pushBtn
)
{
PushBtn
=
pushBtn
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/InOutItem.java
View file @
07259995
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
InOutItem
implements
java
.
io
.
Serializable
{
public
class
InOutItem
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Name
;
private
String
Type
;
private
String
Remark
;
public
InOutItem
()
{
public
InOutItem
()
{
}
public
InOutItem
(
Long
Id
)
{
public
InOutItem
(
Long
Id
)
{
this
.
Id
=
Id
;
}
...
...
@@ -24,43 +21,35 @@ public class InOutItem implements java.io.Serializable
Remark
=
remark
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
Long
getId
()
{
public
Long
getId
()
{
return
Id
;
}
public
void
setName
(
String
name
)
{
Name
=
name
;
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
String
getName
()
{
public
String
getName
()
{
return
Name
;
}
public
void
setType
(
String
type
)
{
Type
=
type
;
public
void
setName
(
String
name
)
{
Name
=
name
;
}
public
String
getType
()
{
public
String
getType
()
{
return
Type
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
public
void
setType
(
String
type
)
{
Type
=
type
;
}
public
String
getRemark
()
{
public
String
getRemark
()
{
return
Remark
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
}
src/main/java/com/jsh/model/po/Logdetails.java
View file @
07259995
...
...
@@ -3,52 +3,46 @@ package com.jsh.model.po;
import
java.sql.Timestamp
;
@SuppressWarnings
(
"serial"
)
public
class
Logdetails
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
Basicuser
user
;
private
String
operation
;
private
String
clientIp
;
private
Timestamp
createtime
;
private
Short
status
;
private
String
contentdetails
;
private
String
remark
;
public
Logdetails
()
{
}
public
Logdetails
(
Long
id
)
{
this
.
id
=
id
;
}
public
Logdetails
(
Basicuser
user
,
String
operation
,
String
clientIp
,
Timestamp
createtime
,
Short
status
,
String
contentdetails
,
String
remark
)
{
this
.
user
=
user
;
this
.
operation
=
operation
;
this
.
clientIp
=
clientIp
;
this
.
createtime
=
createtime
;
this
.
status
=
status
;
this
.
contentdetails
=
contentdetails
;
this
.
remark
=
remark
;
}
public
Long
getId
()
{
return
this
.
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
Basicuser
getUser
()
{
public
class
Logdetails
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
Basicuser
user
;
private
String
operation
;
private
String
clientIp
;
private
Timestamp
createtime
;
private
Short
status
;
private
String
contentdetails
;
private
String
remark
;
public
Logdetails
()
{
}
public
Logdetails
(
Long
id
)
{
this
.
id
=
id
;
}
public
Logdetails
(
Basicuser
user
,
String
operation
,
String
clientIp
,
Timestamp
createtime
,
Short
status
,
String
contentdetails
,
String
remark
)
{
this
.
user
=
user
;
this
.
operation
=
operation
;
this
.
clientIp
=
clientIp
;
this
.
createtime
=
createtime
;
this
.
status
=
status
;
this
.
contentdetails
=
contentdetails
;
this
.
remark
=
remark
;
}
public
Long
getId
()
{
return
this
.
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
Basicuser
getUser
()
{
return
user
;
}
...
...
@@ -56,64 +50,52 @@ public class Logdetails implements java.io.Serializable
this
.
user
=
user
;
}
public
String
getOperation
()
{
return
this
.
operation
;
}
public
void
setOperation
(
String
operation
)
{
this
.
operation
=
operation
;
}
public
String
getClientIp
()
{
return
this
.
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
Timestamp
getCreatetime
()
{
return
this
.
createtime
;
}
public
void
setCreatetime
(
Timestamp
createtime
)
{
this
.
createtime
=
createtime
;
}
public
Short
getStatus
()
{
return
this
.
status
;
}
public
void
setStatus
(
Short
status
)
{
this
.
status
=
status
;
}
public
String
getContentdetails
()
{
return
this
.
contentdetails
;
}
public
void
setContentdetails
(
String
contentdetails
)
{
this
.
contentdetails
=
contentdetails
;
}
public
String
getRemark
()
{
return
this
.
remark
;
}
public
void
setRemark
(
String
remark
)
{
this
.
remark
=
remark
;
}
public
String
getOperation
()
{
return
this
.
operation
;
}
public
void
setOperation
(
String
operation
)
{
this
.
operation
=
operation
;
}
public
String
getClientIp
()
{
return
this
.
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
Timestamp
getCreatetime
()
{
return
this
.
createtime
;
}
public
void
setCreatetime
(
Timestamp
createtime
)
{
this
.
createtime
=
createtime
;
}
public
Short
getStatus
()
{
return
this
.
status
;
}
public
void
setStatus
(
Short
status
)
{
this
.
status
=
status
;
}
public
String
getContentdetails
()
{
return
this
.
contentdetails
;
}
public
void
setContentdetails
(
String
contentdetails
)
{
this
.
contentdetails
=
contentdetails
;
}
public
String
getRemark
()
{
return
this
.
remark
;
}
public
void
setRemark
(
String
remark
)
{
this
.
remark
=
remark
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/Material.java
View file @
07259995
...
...
@@ -3,310 +3,287 @@ package com.jsh.model.po;
import
java.util.Map
;
@SuppressWarnings
(
"serial"
)
public
class
Material
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
MaterialCategory
materialCategory
;
private
String
Name
;
private
String
Mfrs
;
private
Double
Packing
;
private
Double
SafetyStock
;
private
String
Model
;
private
String
Standard
;
private
String
Color
;
private
String
Unit
;
public
class
Material
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
MaterialCategory
materialCategory
;
private
String
Name
;
private
String
Mfrs
;
private
Double
Packing
;
private
Double
SafetyStock
;
private
String
Model
;
private
String
Standard
;
private
String
Color
;
private
String
Unit
;
private
Double
RetailPrice
;
private
Double
LowPrice
;
private
Double
PresetPriceOne
;
private
Double
PresetPriceTwo
;
private
Unit
UnitId
;
private
String
FirstOutUnit
;
private
String
FirstInUnit
;
private
String
PriceStrategy
;
private
String
Remark
;
private
Boolean
Enabled
;
private
String
OtherField1
;
private
String
OtherField2
;
private
String
OtherField3
;
//----------以下属性导入exel表格使用--------------------
/**
* 类型 right--正确 warn--警告 wrong--错误
*/
private
Map
<
Integer
,
String
>
cellInfo
;
/**
* 行号
*/
private
Integer
rowLineNum
;
private
String
safetyStockStr
;
public
Material
()
{
}
public
Material
(
Long
Id
)
{
this
.
Id
=
Id
;
}
public
Material
(
MaterialCategory
materialCategory
,
String
name
,
String
mfrs
,
Double
packing
,
Double
safetyStock
,
String
model
,
String
standard
,
String
color
,
String
unit
,
String
remark
,
Double
retailPrice
,
Double
lowPrice
,
Double
presetPriceOne
,
Double
presetPriceTwo
,
Unit
unitId
,
String
firstOutUnit
,
String
firstInUnit
,
String
priceStrategy
,
Boolean
enabled
,
String
otherField1
,
String
otherField2
,
String
otherField3
)
{
super
();
this
.
materialCategory
=
materialCategory
;
Name
=
name
;
Mfrs
=
mfrs
;
Packing
=
packing
;
SafetyStock
=
safetyStock
;
Model
=
model
;
Standard
=
standard
;
Color
=
color
;
Unit
=
unit
;
private
Unit
UnitId
;
private
String
FirstOutUnit
;
private
String
FirstInUnit
;
private
String
PriceStrategy
;
private
String
Remark
;
private
Boolean
Enabled
;
private
String
OtherField1
;
private
String
OtherField2
;
private
String
OtherField3
;
//----------以下属性导入exel表格使用--------------------
/**
* 类型 right--正确 warn--警告 wrong--错误
*/
private
Map
<
Integer
,
String
>
cellInfo
;
/**
* 行号
*/
private
Integer
rowLineNum
;
private
String
safetyStockStr
;
public
Material
()
{
}
public
Material
(
Long
Id
)
{
this
.
Id
=
Id
;
}
public
Material
(
MaterialCategory
materialCategory
,
String
name
,
String
mfrs
,
Double
packing
,
Double
safetyStock
,
String
model
,
String
standard
,
String
color
,
String
unit
,
String
remark
,
Double
retailPrice
,
Double
lowPrice
,
Double
presetPriceOne
,
Double
presetPriceTwo
,
Unit
unitId
,
String
firstOutUnit
,
String
firstInUnit
,
String
priceStrategy
,
Boolean
enabled
,
String
otherField1
,
String
otherField2
,
String
otherField3
)
{
super
();
this
.
materialCategory
=
materialCategory
;
Name
=
name
;
Mfrs
=
mfrs
;
Packing
=
packing
;
SafetyStock
=
safetyStock
;
Model
=
model
;
Standard
=
standard
;
Color
=
color
;
Unit
=
unit
;
RetailPrice
=
retailPrice
;
LowPrice
=
lowPrice
;
PresetPriceOne
=
presetPriceOne
;
PresetPriceTwo
=
presetPriceTwo
;
Remark
=
remark
;
UnitId
=
unitId
;
FirstOutUnit
=
firstOutUnit
;
FirstInUnit
=
firstInUnit
;
PriceStrategy
=
priceStrategy
;
Enabled
=
enabled
;
OtherField1
=
otherField1
;
OtherField2
=
otherField2
;
OtherField3
=
otherField3
;
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
MaterialCategory
getMaterialCategory
()
{
return
materialCategory
;
}
public
void
setMaterialCategory
(
MaterialCategory
materialCategory
)
{
this
.
materialCategory
=
materialCategory
;
}
public
String
getName
()
{
return
Name
;
}
public
void
setName
(
String
name
)
{
Name
=
name
;
}
public
String
getModel
()
{
return
Model
;
}
public
void
setModel
(
String
model
)
{
Model
=
model
;
}
public
String
getStandard
()
{
return
Standard
;
}
public
void
setStandard
(
String
standard
)
{
Standard
=
standard
;
}
public
String
getColor
()
{
return
Color
;
}
public
void
setColor
(
String
color
)
{
Color
=
color
;
}
public
String
getUnit
()
{
return
Unit
;
}
public
void
setUnit
(
String
unit
)
{
Unit
=
unit
;
}
public
void
setRetailPrice
(
Double
retailPrice
)
{
RetailPrice
=
retailPrice
;
Remark
=
remark
;
UnitId
=
unitId
;
FirstOutUnit
=
firstOutUnit
;
FirstInUnit
=
firstInUnit
;
PriceStrategy
=
priceStrategy
;
Enabled
=
enabled
;
OtherField1
=
otherField1
;
OtherField2
=
otherField2
;
OtherField3
=
otherField3
;
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
MaterialCategory
getMaterialCategory
()
{
return
materialCategory
;
}
public
void
setMaterialCategory
(
MaterialCategory
materialCategory
)
{
this
.
materialCategory
=
materialCategory
;
}
public
String
getName
()
{
return
Name
;
}
public
void
setName
(
String
name
)
{
Name
=
name
;
}
public
String
getModel
()
{
return
Model
;
}
public
void
setModel
(
String
model
)
{
Model
=
model
;
}
public
String
getStandard
()
{
return
Standard
;
}
public
Double
getRetailPrice
()
{
public
void
setStandard
(
String
standard
)
{
Standard
=
standard
;
}
public
String
getColor
()
{
return
Color
;
}
public
void
setColor
(
String
color
)
{
Color
=
color
;
}
public
String
getUnit
()
{
return
Unit
;
}
public
void
setUnit
(
String
unit
)
{
Unit
=
unit
;
}
public
Double
getRetailPrice
()
{
return
RetailPrice
;
}
public
void
setLowPrice
(
Double
lowPrice
)
{
LowPrice
=
lowPrice
;
public
void
setRetailPrice
(
Double
retailPrice
)
{
RetailPrice
=
retailPrice
;
}
public
Double
getLowPrice
()
{
public
Double
getLowPrice
()
{
return
LowPrice
;
}
public
void
setPresetPriceOne
(
Double
presetPriceOne
)
{
PresetPriceOne
=
presetPriceOne
;
public
void
setLowPrice
(
Double
lowPrice
)
{
LowPrice
=
lowPrice
;
}
public
Double
getPresetPriceOne
()
{
public
Double
getPresetPriceOne
()
{
return
PresetPriceOne
;
}
public
void
setPresetPriceTwo
(
Double
presetPriceTwo
)
{
PresetPriceTwo
=
presetPriceTwo
;
public
void
setPresetPriceOne
(
Double
presetPriceOne
)
{
PresetPriceOne
=
presetPriceOne
;
}
public
Double
getPresetPriceTwo
()
{
public
Double
getPresetPriceTwo
()
{
return
PresetPriceTwo
;
}
public
String
getRemark
()
{
return
Remark
;
}
public
void
setPresetPriceTwo
(
Double
presetPriceTwo
)
{
PresetPriceTwo
=
presetPriceTwo
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
public
String
getRemark
()
{
return
Remark
;
}
public
String
getMfrs
(
)
{
return
Mfrs
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
public
void
setMfrs
(
String
m
frs
)
{
Mfrs
=
m
frs
;
}
public
String
getM
frs
(
)
{
return
M
frs
;
}
public
Double
getPacking
(
)
{
return
Packing
;
}
public
void
setMfrs
(
String
mfrs
)
{
Mfrs
=
mfrs
;
}
public
void
setPacking
(
Double
p
acking
)
{
Packing
=
p
acking
;
}
public
Double
getP
acking
(
)
{
return
P
acking
;
}
public
Double
getSafetyStock
(
)
{
return
SafetyStock
;
}
public
void
setPacking
(
Double
packing
)
{
Packing
=
packing
;
}
public
void
setSafetyStock
(
Double
s
afetyStock
)
{
SafetyStock
=
s
afetyStock
;
}
public
Double
getS
afetyStock
(
)
{
return
S
afetyStock
;
}
public
Unit
getUnitId
(
)
{
return
UnitId
;
}
public
void
setSafetyStock
(
Double
safetyStock
)
{
SafetyStock
=
safetyStock
;
}
public
void
s
etUnitId
(
Unit
unitId
)
{
UnitId
=
u
nitId
;
}
public
Unit
g
etUnitId
()
{
return
U
nitId
;
}
public
String
getFirstOutU
nit
(
)
{
return
FirstOutU
nit
;
}
public
void
setUnitId
(
Unit
u
nit
Id
)
{
UnitId
=
u
nit
Id
;
}
public
void
setFirstOutUnit
(
String
f
irstOutUnit
)
{
FirstOutUnit
=
f
irstOutUnit
;
}
public
String
getF
irstOutUnit
(
)
{
return
F
irstOutUnit
;
}
public
String
getF
irst
In
Unit
(
)
{
return
F
irst
In
Unit
;
}
public
void
setFirstOutUnit
(
String
f
irst
Out
Unit
)
{
FirstOutUnit
=
f
irst
Out
Unit
;
}
public
void
setFirstInUnit
(
String
f
irstInUnit
)
{
FirstInUnit
=
f
irstInUnit
;
}
public
String
getF
irstInUnit
(
)
{
return
F
irstInUnit
;
}
public
String
getPriceStrategy
(
)
{
return
PriceStrategy
;
}
public
void
setFirstInUnit
(
String
firstInUnit
)
{
FirstInUnit
=
firstInUnit
;
}
public
void
setPriceStrategy
(
String
p
riceStrategy
)
{
PriceStrategy
=
p
riceStrategy
;
}
public
String
getP
riceStrategy
(
)
{
return
P
riceStrategy
;
}
public
Boolean
getEnabled
(
)
{
return
Enabled
;
}
public
void
setPriceStrategy
(
String
priceStrategy
)
{
PriceStrategy
=
priceStrategy
;
}
public
void
setEnabled
(
Boolean
e
nabled
)
{
Enabled
=
e
nabled
;
}
public
Boolean
getE
nabled
(
)
{
return
E
nabled
;
}
public
String
getOtherField1
()
{
return
OtherField1
;
}
public
void
setEnabled
(
Boolean
enabled
)
{
Enabled
=
enabled
;
}
public
String
getOtherField1
()
{
return
OtherField1
;
}
public
void
setOtherField1
(
String
otherField1
)
{
OtherField1
=
otherField1
;
}
public
String
getOtherField3
()
{
return
OtherField3
;
}
public
void
setOtherField
1
(
String
otherField
1
)
{
OtherField
1
=
otherField
1
;
}
public
void
setOtherField
3
(
String
otherField
3
)
{
OtherField
3
=
otherField
3
;
}
public
String
getOtherField
3
()
{
return
OtherField
3
;
}
public
String
getOtherField
2
()
{
return
OtherField
2
;
}
public
void
setOtherField
3
(
String
otherField
3
)
{
OtherField
3
=
otherField
3
;
}
public
void
setOtherField
2
(
String
otherField
2
)
{
OtherField
2
=
otherField
2
;
}
public
String
get
OtherField2
()
{
return
OtherField2
;
}
public
Map
<
Integer
,
String
>
get
CellInfo
()
{
return
cellInfo
;
}
public
void
set
OtherField2
(
String
otherField2
)
{
OtherField2
=
otherField2
;
}
public
void
set
CellInfo
(
Map
<
Integer
,
String
>
cellInfo
)
{
this
.
cellInfo
=
cellInfo
;
}
public
Map
<
Integer
,
String
>
getCellInfo
()
{
return
cellInfo
;
}
public
void
setCellInfo
(
Map
<
Integer
,
String
>
cellInfo
)
{
this
.
cellInfo
=
cellInfo
;
}
public
Integer
getRowLineNum
()
{
return
rowLineNum
;
}
public
Integer
getRowLineNum
()
{
return
rowLineNum
;
}
public
void
setRowLineNum
(
Integer
rowLineNum
)
{
this
.
rowLineNum
=
rowLineNum
;
}
public
void
setRowLineNum
(
Integer
rowLineNum
)
{
this
.
rowLineNum
=
rowLineNum
;
}
public
String
getSafetyStockStr
()
{
return
safetyStockStr
;
}
public
String
getSafetyStockStr
()
{
return
safetyStockStr
;
}
public
void
setSafetyStockStr
(
String
safetyStockStr
)
{
this
.
safetyStockStr
=
safetyStockStr
;
}
public
void
setSafetyStockStr
(
String
safetyStockStr
)
{
this
.
safetyStockStr
=
safetyStockStr
;
}
}
src/main/java/com/jsh/model/po/MaterialCategory.java
View file @
07259995
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
MaterialCategory
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Name
;
private
Short
CategoryLevel
;
private
MaterialCategory
materialCategory
;
public
MaterialCategory
()
{
}
public
MaterialCategory
(
Long
Id
)
{
this
.
Id
=
Id
;
}
public
MaterialCategory
(
String
name
,
Short
categoryLevel
,
MaterialCategory
materialCategory
)
{
Name
=
name
;
CategoryLevel
=
categoryLevel
;
this
.
materialCategory
=
materialCategory
;
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
String
getName
()
{
return
Name
;
}
public
void
setName
(
String
name
)
{
Name
=
name
;
}
public
Short
getCategoryLevel
()
{
return
CategoryLevel
;
}
public
void
setCategoryLevel
(
Short
categoryLevel
)
{
CategoryLevel
=
categoryLevel
;
}
public
MaterialCategory
getMaterialCategory
()
{
return
materialCategory
;
}
public
void
setMaterialCategory
(
MaterialCategory
materialCategory
)
{
this
.
materialCategory
=
materialCategory
;
}
public
class
MaterialCategory
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Name
;
private
Short
CategoryLevel
;
private
MaterialCategory
materialCategory
;
public
MaterialCategory
()
{
}
public
MaterialCategory
(
Long
Id
)
{
this
.
Id
=
Id
;
}
public
MaterialCategory
(
String
name
,
Short
categoryLevel
,
MaterialCategory
materialCategory
)
{
Name
=
name
;
CategoryLevel
=
categoryLevel
;
this
.
materialCategory
=
materialCategory
;
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
String
getName
()
{
return
Name
;
}
public
void
setName
(
String
name
)
{
Name
=
name
;
}
public
Short
getCategoryLevel
()
{
return
CategoryLevel
;
}
public
void
setCategoryLevel
(
Short
categoryLevel
)
{
CategoryLevel
=
categoryLevel
;
}
public
MaterialCategory
getMaterialCategory
()
{
return
materialCategory
;
}
public
void
setMaterialCategory
(
MaterialCategory
materialCategory
)
{
this
.
materialCategory
=
materialCategory
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/MaterialProperty.java
View file @
07259995
...
...
@@ -2,65 +2,64 @@ package com.jsh.model.po;
@SuppressWarnings
(
"serial"
)
public
class
MaterialProperty
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
nativeName
;
private
Boolean
enabled
;
private
String
sort
;
private
String
anotherName
;
private
Long
id
;
private
String
nativeName
;
private
Boolean
enabled
;
private
String
sort
;
private
String
anotherName
;
public
MaterialProperty
()
{
public
MaterialProperty
()
{
}
}
public
MaterialProperty
(
Long
id
)
{
this
.
id
=
id
;
}
public
MaterialProperty
(
Long
id
)
{
this
.
id
=
id
;
}
public
MaterialProperty
(
String
nativeName
,
Boolean
enabled
,
String
sort
,
String
anotherName
)
{
nativeName
=
nativeName
;
enabled
=
enabled
;
sort
=
sort
;
anotherName
=
anotherName
;
}
public
MaterialProperty
(
String
nativeName
,
Boolean
enabled
,
String
sort
,
String
anotherName
)
{
nativeName
=
nativeName
;
enabled
=
enabled
;
sort
=
sort
;
anotherName
=
anotherName
;
}
public
Long
getId
()
{
return
id
;
}
public
Long
getId
()
{
return
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getNativeName
()
{
return
nativeName
;
}
public
String
getNativeName
()
{
return
nativeName
;
}
public
void
setNativeName
(
String
nativeName
)
{
this
.
nativeName
=
nativeName
;
}
public
void
setNativeName
(
String
nativeName
)
{
this
.
nativeName
=
nativeName
;
}
public
Boolean
getEnabled
()
{
return
enabled
;
}
public
Boolean
getEnabled
()
{
return
enabled
;
}
public
void
setEnabled
(
Boolean
enabled
)
{
this
.
enabled
=
enabled
;
}
public
void
setEnabled
(
Boolean
enabled
)
{
this
.
enabled
=
enabled
;
}
public
String
getSort
()
{
return
sort
;
}
public
String
getSort
()
{
return
sort
;
}
public
void
setSort
(
String
sort
)
{
this
.
sort
=
sort
;
}
public
void
setSort
(
String
sort
)
{
this
.
sort
=
sort
;
}
public
String
getAnotherName
()
{
return
anotherName
;
}
public
String
getAnotherName
()
{
return
anotherName
;
}
public
void
setAnotherName
(
String
anotherName
)
{
this
.
anotherName
=
anotherName
;
}
public
void
setAnotherName
(
String
anotherName
)
{
this
.
anotherName
=
anotherName
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/Person.java
View file @
07259995
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
Person
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Type
;
private
String
Name
;
public
Person
()
{
}
public
Person
(
Long
Id
)
{
this
.
Id
=
Id
;
}
public
Person
(
String
type
,
String
name
)
{
Type
=
type
;
Name
=
name
;
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
String
getType
()
{
return
Type
;
}
public
void
setType
(
String
type
)
{
Type
=
type
;
}
public
String
getName
()
{
return
Name
;
}
public
void
setName
(
String
name
)
{
Name
=
name
;
}
public
class
Person
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Type
;
private
String
Name
;
public
Person
()
{
}
public
Person
(
Long
Id
)
{
this
.
Id
=
Id
;
}
public
Person
(
String
type
,
String
name
)
{
Type
=
type
;
Name
=
name
;
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
String
getType
()
{
return
Type
;
}
public
void
setType
(
String
type
)
{
Type
=
type
;
}
public
String
getName
()
{
return
Name
;
}
public
void
setName
(
String
name
)
{
Name
=
name
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/Role.java
View file @
07259995
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
Role
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Name
;
public
Role
()
{
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
String
getName
()
{
return
Name
;
}
public
void
setName
(
String
name
)
{
Name
=
name
;
}
public
class
Role
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Name
;
public
Role
()
{
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
String
getName
()
{
return
Name
;
}
public
void
setName
(
String
name
)
{
Name
=
name
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/Supplier.java
View file @
07259995
...
...
@@ -3,321 +3,307 @@ package com.jsh.model.po;
import
java.util.Map
;
@SuppressWarnings
(
"serial"
)
public
class
Supplier
implements
java
.
io
.
Serializable
{
private
Long
id
=
0
l
;
private
String
supplier
=
""
;
private
String
type
=
""
;
private
String
contacts
=
""
;
private
String
phonenum
=
""
;
private
String
fax
=
""
;
private
String
telephone
=
""
;
private
String
email
=
""
;
private
String
address
=
""
;
private
Double
advanceIn
=
0
d
;
private
String
taxNum
=
""
;
private
String
bankName
=
""
;
private
String
accountNumber
=
""
;
private
Double
taxRate
=
0
d
;
public
class
Supplier
implements
java
.
io
.
Serializable
{
private
Long
id
=
0
l
;
private
String
supplier
=
""
;
private
String
type
=
""
;
private
String
contacts
=
""
;
private
String
phonenum
=
""
;
private
String
fax
=
""
;
private
String
telephone
=
""
;
private
String
email
=
""
;
private
String
address
=
""
;
private
Double
advanceIn
=
0
d
;
private
String
taxNum
=
""
;
private
String
bankName
=
""
;
private
String
accountNumber
=
""
;
private
Double
taxRate
=
0
d
;
private
Double
BeginNeedGet
=
0
d
;
private
Double
BeginNeedPay
=
0
d
;
private
Double
AllNeedGet
=
0
d
;
private
Double
AllNeedPay
=
0
d
;
private
Short
isystem
=
1
;
private
String
description
=
""
;
private
Boolean
enabled
=
true
;
//----------以下属性导入exel表格使用--------------------
/**
* 类型 right--正确 warn--警告 wrong--错误
*/
private
Map
<
Integer
,
String
>
cellInfo
;
/**
* 行号
*/
private
Integer
rowLineNum
;
private
String
advanceInStr
;
private
String
beginNeedGetStr
;
private
String
beginNeedPayStr
;
private
String
taxRateStr
;
private
String
enabledStr
;
public
Supplier
()
{
}
public
Supplier
(
Long
id
)
{
this
.
id
=
id
;
}
public
Supplier
(
String
supplier
,
String
type
,
String
contacts
,
String
phonenum
,
String
fax
,
String
telephone
,
String
email
,
String
address
,
Short
isystem
,
String
description
,
Boolean
enabled
,
Double
advanceIn
,
String
taxNum
,
String
bankName
,
String
accountNumber
,
Double
taxRate
,
Double
beginNeedGet
,
Double
beginNeedPay
,
Double
allNeedGet
,
Double
allNeedPay
)
{
super
();
this
.
supplier
=
supplier
;
this
.
type
=
type
;
this
.
contacts
=
contacts
;
this
.
phonenum
=
phonenum
;
this
.
fax
=
fax
;
this
.
telephone
=
telephone
;
this
.
address
=
address
;
this
.
email
=
email
;
private
Short
isystem
=
1
;
private
String
description
=
""
;
private
Boolean
enabled
=
true
;
//----------以下属性导入exel表格使用--------------------
/**
* 类型 right--正确 warn--警告 wrong--错误
*/
private
Map
<
Integer
,
String
>
cellInfo
;
/**
* 行号
*/
private
Integer
rowLineNum
;
private
String
advanceInStr
;
private
String
beginNeedGetStr
;
private
String
beginNeedPayStr
;
private
String
taxRateStr
;
private
String
enabledStr
;
public
Supplier
()
{
}
public
Supplier
(
Long
id
)
{
this
.
id
=
id
;
}
public
Supplier
(
String
supplier
,
String
type
,
String
contacts
,
String
phonenum
,
String
fax
,
String
telephone
,
String
email
,
String
address
,
Short
isystem
,
String
description
,
Boolean
enabled
,
Double
advanceIn
,
String
taxNum
,
String
bankName
,
String
accountNumber
,
Double
taxRate
,
Double
beginNeedGet
,
Double
beginNeedPay
,
Double
allNeedGet
,
Double
allNeedPay
)
{
super
();
this
.
supplier
=
supplier
;
this
.
type
=
type
;
this
.
contacts
=
contacts
;
this
.
phonenum
=
phonenum
;
this
.
fax
=
fax
;
this
.
telephone
=
telephone
;
this
.
address
=
address
;
this
.
email
=
email
;
this
.
BeginNeedGet
=
beginNeedGet
;
this
.
BeginNeedPay
=
beginNeedPay
;
this
.
AllNeedGet
=
allNeedGet
;
this
.
AllNeedPay
=
allNeedPay
;
this
.
isystem
=
isystem
;
this
.
description
=
description
;
this
.
enabled
=
enabled
;
this
.
advanceIn
=
advanceIn
;
this
.
taxNum
=
taxNum
;
this
.
bankName
=
bankName
;
this
.
accountNumber
=
accountNumber
;
this
.
taxRate
=
taxRate
;
}
public
Long
getId
()
{
return
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getSupplier
()
{
return
supplier
;
}
public
void
setSupplier
(
String
supplier
)
{
this
.
supplier
=
supplier
;
}
public
String
getType
()
{
return
type
;
}
public
void
setType
(
String
type
)
{
this
.
type
=
type
;
}
public
String
getContacts
()
{
return
contacts
;
}
public
void
setContacts
(
String
contacts
)
{
this
.
contacts
=
contacts
;
}
public
String
getPhonenum
()
{
return
phonenum
;
}
public
void
setPhonenum
(
String
phonenum
)
{
this
.
phonenum
=
phonenum
;
}
public
String
getEmail
()
{
return
email
;
}
public
void
setEmail
(
String
email
)
{
this
.
email
=
email
;
}
public
void
setBeginNeedGet
(
Double
beginNeedGet
)
{
BeginNeedGet
=
beginNeedGet
;
this
.
AllNeedPay
=
allNeedPay
;
this
.
isystem
=
isystem
;
this
.
description
=
description
;
this
.
enabled
=
enabled
;
this
.
advanceIn
=
advanceIn
;
this
.
taxNum
=
taxNum
;
this
.
bankName
=
bankName
;
this
.
accountNumber
=
accountNumber
;
this
.
taxRate
=
taxRate
;
}
public
Long
getId
()
{
return
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getSupplier
()
{
return
supplier
;
}
public
Double
getBeginNeedGet
()
{
public
void
setSupplier
(
String
supplier
)
{
this
.
supplier
=
supplier
;
}
public
String
getType
()
{
return
type
;
}
public
void
setType
(
String
type
)
{
this
.
type
=
type
;
}
public
String
getContacts
()
{
return
contacts
;
}
public
void
setContacts
(
String
contacts
)
{
this
.
contacts
=
contacts
;
}
public
String
getPhonenum
()
{
return
phonenum
;
}
public
void
setPhonenum
(
String
phonenum
)
{
this
.
phonenum
=
phonenum
;
}
public
String
getEmail
()
{
return
email
;
}
public
void
setEmail
(
String
email
)
{
this
.
email
=
email
;
}
public
Double
getBeginNeedGet
()
{
return
BeginNeedGet
;
}
public
void
setBeginNeedPay
(
Double
beginNeedPay
)
{
BeginNeedPay
=
beginNeedPay
;
public
void
setBeginNeedGet
(
Double
beginNeedGet
)
{
BeginNeedGet
=
beginNeedGet
;
}
public
Double
getBeginNeedPay
()
{
public
Double
getBeginNeedPay
()
{
return
BeginNeedPay
;
}
public
void
setAllNeedGet
(
Double
allNeedGet
)
{
AllNeedGet
=
allNeedGet
;
public
void
setBeginNeedPay
(
Double
beginNeedPay
)
{
BeginNeedPay
=
beginNeedPay
;
}
public
Double
getAllNeedGet
()
{
public
Double
getAllNeedGet
()
{
return
AllNeedGet
;
}
public
void
setAllNeedPay
(
Double
allNeedPay
)
{
AllNeedPay
=
allNeedPay
;
public
void
setAllNeedGet
(
Double
allNeedGet
)
{
AllNeedGet
=
allNeedGet
;
}
public
Double
getAllNeedPay
()
{
public
Double
getAllNeedPay
()
{
return
AllNeedPay
;
}
public
Short
getIsystem
(
)
{
return
isystem
;
}
public
void
setAllNeedPay
(
Double
allNeedPay
)
{
AllNeedPay
=
allNeedPay
;
}
public
void
s
etIsystem
(
Short
isystem
)
{
this
.
isystem
=
isystem
;
}
public
Short
g
etIsystem
()
{
return
isystem
;
}
public
String
getDescription
(
)
{
return
description
;
}
public
void
setIsystem
(
Short
isystem
)
{
this
.
isystem
=
isystem
;
}
public
void
setDescription
(
String
d
escription
)
{
this
.
description
=
description
;
}
public
String
getD
escription
(
)
{
return
description
;
}
public
Boolean
getEnabled
(
)
{
return
enabled
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
void
setEnabled
(
Boolean
e
nabled
)
{
this
.
enabled
=
enabled
;
}
public
Boolean
getE
nabled
(
)
{
return
enabled
;
}
public
Double
getAdvanceIn
(
)
{
return
advanceIn
;
}
public
void
setEnabled
(
Boolean
enabled
)
{
this
.
enabled
=
enabled
;
}
public
void
setAdvanceIn
(
Double
a
dvanceIn
)
{
this
.
advanceIn
=
advanceIn
;
}
public
Double
getA
dvanceIn
(
)
{
return
advanceIn
;
}
public
String
getFax
(
)
{
return
fax
;
}
public
void
setAdvanceIn
(
Double
advanceIn
)
{
this
.
advanceIn
=
advanceIn
;
}
public
void
setFax
(
String
fax
)
{
this
.
fax
=
fax
;
}
public
String
getFax
()
{
return
fax
;
}
public
void
setFax
(
String
fax
)
{
this
.
fax
=
fax
;
}
public
String
getTelephone
()
{
return
telephone
;
}
public
String
getTelephone
()
{
return
telephone
;
}
public
void
setTelephone
(
String
telephone
)
{
this
.
telephone
=
telephone
;
}
public
void
setTelephone
(
String
telephone
)
{
this
.
telephone
=
telephone
;
}
public
String
getAddress
()
{
return
address
;
}
public
String
getAddress
()
{
return
address
;
}
public
void
setAddress
(
String
address
)
{
this
.
address
=
address
;
}
public
void
setAddress
(
String
address
)
{
this
.
address
=
address
;
}
public
String
getTaxNum
()
{
return
taxNum
;
}
public
String
getTaxNum
()
{
return
taxNum
;
}
public
void
setTaxNum
(
String
taxNum
)
{
this
.
taxNum
=
taxNum
;
}
public
void
setTaxNum
(
String
taxNum
)
{
this
.
taxNum
=
taxNum
;
}
public
String
getBankName
()
{
return
bankName
;
}
public
String
getBankName
()
{
return
bankName
;
}
public
void
setBankName
(
String
bankName
)
{
this
.
bankName
=
bankName
;
}
public
void
setBankName
(
String
bankName
)
{
this
.
bankName
=
bankName
;
}
public
String
getAccountNumber
()
{
return
accountNumber
;
}
public
String
getAccountNumber
()
{
return
accountNumber
;
}
public
void
setAccountNumber
(
String
accountNumber
)
{
this
.
accountNumber
=
accountNumber
;
}
public
void
setAccountNumber
(
String
accountNumber
)
{
this
.
accountNumber
=
accountNumber
;
}
public
Double
getTaxRate
()
{
return
taxRate
;
}
public
Double
getTaxRate
()
{
return
taxRate
;
}
public
void
setTaxRate
(
Double
taxRate
)
{
this
.
taxRate
=
taxRate
;
}
public
void
setTaxRate
(
Double
taxRate
)
{
this
.
taxRate
=
taxRate
;
}
public
Map
<
Integer
,
String
>
getCellInfo
()
{
return
cellInfo
;
}
public
Map
<
Integer
,
String
>
getCellInfo
()
{
return
cellInfo
;
}
public
void
setCellInfo
(
Map
<
Integer
,
String
>
cellInfo
)
{
this
.
cellInfo
=
cellInfo
;
}
public
void
setCellInfo
(
Map
<
Integer
,
String
>
cellInfo
)
{
this
.
cellInfo
=
cellInfo
;
}
public
Integer
getRowLineNum
()
{
return
rowLineNum
;
}
public
Integer
getRowLineNum
()
{
return
rowLineNum
;
}
public
void
setRowLineNum
(
Integer
rowLineNum
)
{
this
.
rowLineNum
=
rowLineNum
;
}
public
void
setRowLineNum
(
Integer
rowLineNum
)
{
this
.
rowLineNum
=
rowLineNum
;
}
public
String
getAdvanceInStr
()
{
return
advanceInStr
;
}
public
String
getAdvanceInStr
()
{
return
advanceInStr
;
}
public
void
setAdvanceInStr
(
String
advanceInStr
)
{
this
.
advanceInStr
=
advanceInStr
;
}
public
void
setAdvanceInStr
(
String
advanceInStr
)
{
this
.
advanceInStr
=
advanceInStr
;
}
public
String
getBeginNeedGetStr
()
{
return
beginNeedGetStr
;
}
public
String
getBeginNeedGetStr
()
{
return
beginNeedGetStr
;
}
public
void
setBeginNeedGetStr
(
String
beginNeedGetStr
)
{
this
.
beginNeedGetStr
=
beginNeedGetStr
;
}
public
void
setBeginNeedGetStr
(
String
beginNeedGetStr
)
{
this
.
beginNeedGetStr
=
beginNeedGetStr
;
}
public
String
getBeginNeedPayStr
()
{
return
beginNeedPayStr
;
}
public
String
getBeginNeedPayStr
()
{
return
beginNeedPayStr
;
}
public
void
setBeginNeedPayStr
(
String
beginNeedPayStr
)
{
this
.
beginNeedPayStr
=
beginNeedPayStr
;
}
public
void
setBeginNeedPayStr
(
String
beginNeedPayStr
)
{
this
.
beginNeedPayStr
=
beginNeedPayStr
;
}
public
String
getTaxRateStr
()
{
return
taxRateStr
;
}
public
String
getTaxRateStr
()
{
return
taxRateStr
;
}
public
void
setTaxRateStr
(
String
taxRateStr
)
{
this
.
taxRateStr
=
taxRateStr
;
}
public
void
setTaxRateStr
(
String
taxRateStr
)
{
this
.
taxRateStr
=
taxRateStr
;
}
public
String
getEnabledStr
()
{
return
enabledStr
;
}
public
String
getEnabledStr
()
{
return
enabledStr
;
}
public
void
setEnabledStr
(
String
enabledStr
)
{
this
.
enabledStr
=
enabledStr
;
}
public
void
setEnabledStr
(
String
enabledStr
)
{
this
.
enabledStr
=
enabledStr
;
}
}
src/main/java/com/jsh/model/po/SystemConfig.java
View file @
07259995
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
SystemConfig
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
type
;
private
String
name
;
private
String
value
;
private
String
description
;
public
Long
getId
()
{
return
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getType
()
{
return
type
;
}
public
void
setType
(
String
type
)
{
this
.
type
=
type
;
}
public
String
getName
()
{
return
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
String
getValue
()
{
return
value
;
}
public
void
setValue
(
String
value
)
{
this
.
value
=
value
;
}
public
String
getDescription
()
{
return
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
class
SystemConfig
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
type
;
private
String
name
;
private
String
value
;
private
String
description
;
public
Long
getId
()
{
return
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getType
()
{
return
type
;
}
public
void
setType
(
String
type
)
{
this
.
type
=
type
;
}
public
String
getName
()
{
return
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
String
getValue
()
{
return
value
;
}
public
void
setValue
(
String
value
)
{
this
.
value
=
value
;
}
public
String
getDescription
()
{
return
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/Unit.java
View file @
07259995
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
Unit
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
UName
;
public
class
Unit
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
UName
;
public
Unit
()
{
public
Unit
()
{
}
}
public
Unit
(
Long
id
)
{
this
.
id
=
id
;
}
public
Unit
(
Long
id
)
{
this
.
id
=
id
;
}
public
Unit
(
String
UName
)
{
this
.
UName
=
UName
;
}
public
Unit
(
String
UName
)
{
this
.
UName
=
UName
;
}
public
Long
getId
()
{
return
id
;
}
public
Long
getId
()
{
return
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getUName
()
{
return
UName
;
}
public
String
getUName
()
{
return
UName
;
}
public
void
setUName
(
String
UName
)
{
this
.
UName
=
UName
;
}
public
void
setUName
(
String
UName
)
{
this
.
UName
=
UName
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/UserBusiness.java
View file @
07259995
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
UserBusiness
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Type
;
private
String
KeyId
;
private
String
Value
;
private
String
BtnStr
;
public
UserBusiness
()
{
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
String
getType
()
{
return
Type
;
}
public
void
setType
(
String
type
)
{
Type
=
type
;
}
public
String
getKeyId
()
{
return
KeyId
;
}
public
void
setKeyId
(
String
keyId
)
{
KeyId
=
keyId
;
}
public
String
getValue
()
{
return
Value
;
}
public
void
setValue
(
String
value
)
{
Value
=
value
;
}
public
String
getBtnStr
()
{
return
BtnStr
;
}
public
void
setBtnStr
(
String
btnStr
)
{
BtnStr
=
btnStr
;
}
public
class
UserBusiness
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Type
;
private
String
KeyId
;
private
String
Value
;
private
String
BtnStr
;
public
UserBusiness
()
{
}
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
String
getType
()
{
return
Type
;
}
public
void
setType
(
String
type
)
{
Type
=
type
;
}
public
String
getKeyId
()
{
return
KeyId
;
}
public
void
setKeyId
(
String
keyId
)
{
KeyId
=
keyId
;
}
public
String
getValue
()
{
return
Value
;
}
public
void
setValue
(
String
value
)
{
Value
=
value
;
}
public
String
getBtnStr
()
{
return
BtnStr
;
}
public
void
setBtnStr
(
String
btnStr
)
{
BtnStr
=
btnStr
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/vo/asset/AssetModel.java
View file @
07259995
...
...
@@ -5,425 +5,368 @@ import java.io.InputStream;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
AssetModel
implements
Serializable
{
public
class
AssetModel
implements
Serializable
{
private
AssetShowModel
showModel
=
new
AssetShowModel
();
/**======开始接受页面参数=================**/
/**
* 资产名称ID
*/
private
Long
assetNameID
;
private
Long
assetNameID
;
/**
* 资产类型ID
*/
private
Long
assetCategoryID
;
private
Long
assetCategoryID
;
/**
* 位置属性
*/
private
String
location
=
""
;
/**
* 状态属性
*/
private
Short
status
;
private
Short
status
;
/**
* 用户ID
*/
private
Long
userID
;
private
Long
userID
;
/**
* 资产单价
*/
private
double
price
=
0
;
/**
* 购买日期
*/
private
String
purchasedate
=
""
;
/**
* 有效日期
*/
private
String
periodofvalidity
=
""
;
/**
* 保修日期
*/
private
String
warrantydate
=
""
;
/**
* 资产编号
*/
private
String
assetnum
=
""
;
/**
* 资产序列号
*/
private
String
serialnum
=
""
;
/**
* 标签
*/
private
String
labels
=
""
;
/**
* 资产ID
*/
private
Long
supplierID
;
private
Long
supplierID
;
/**
* 描述信息
*/
private
String
description
=
""
;
/**
* 资产ID
*/
private
Long
assetID
;
/**
* 资产IDs 批量操作使用
*/
private
String
assetIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
10
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
/**
* 输入流,导出excel文件
*/
private
InputStream
excelStream
;
/**
* 文件名称
*/
private
String
fileName
=
""
;
/**
* 是否全部数据--根据搜索条件
*/
private
String
isAllData
=
""
;
/**
* 浏览器类型--中文字符乱码问题解决,火狐和IE下字符类型不一样
*/
private
String
browserType
=
""
;
/**
* 导入excel文件
*/
private
File
assetFile
;
/**
* 文件类型
*/
private
String
assetFileContentType
;
/**
* 文件名称
*/
private
String
assetFileFileName
;
/**
* 是否只手工检查数据 0==检查 1==不检查直接导入数据库中
*/
private
Integer
isCheck
;
public
AssetShowModel
getShowModel
()
{
private
InputStream
excelStream
;
/**
* 文件名称
*/
private
String
fileName
=
""
;
/**
* 是否全部数据--根据搜索条件
*/
private
String
isAllData
=
""
;
/**
* 浏览器类型--中文字符乱码问题解决,火狐和IE下字符类型不一样
*/
private
String
browserType
=
""
;
/**
* 导入excel文件
*/
private
File
assetFile
;
/**
* 文件类型
*/
private
String
assetFileContentType
;
/**
* 文件名称
*/
private
String
assetFileFileName
;
/**
* 是否只手工检查数据 0==检查 1==不检查直接导入数据库中
*/
private
Integer
isCheck
;
public
AssetShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setShowModel
(
AssetShowModel
showModel
)
{
public
void
setShowModel
(
AssetShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
String
getDescription
()
{
public
String
getDescription
()
{
return
description
;
}
public
void
setDescription
(
String
description
)
{
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
Long
getAssetID
()
{
public
Long
getAssetID
()
{
return
assetID
;
}
public
void
setAssetID
(
Long
assetID
)
{
public
void
setAssetID
(
Long
assetID
)
{
this
.
assetID
=
assetID
;
}
public
String
getAssetIDs
()
{
public
String
getAssetIDs
()
{
return
assetIDs
;
}
public
void
setAssetIDs
(
String
assetIDs
)
{
public
void
setAssetIDs
(
String
assetIDs
)
{
this
.
assetIDs
=
assetIDs
;
}
public
int
getPageSize
()
{
public
int
getPageSize
()
{
return
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
int
getPageNo
()
{
public
int
getPageNo
()
{
return
pageNo
;
}
public
void
setPageNo
(
int
pageNo
)
{
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
String
getClientIp
()
{
public
String
getClientIp
()
{
return
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
Long
getAssetNameID
()
{
public
Long
getAssetNameID
()
{
return
assetNameID
;
}
public
void
setAssetNameID
(
Long
assetNameID
)
{
public
void
setAssetNameID
(
Long
assetNameID
)
{
this
.
assetNameID
=
assetNameID
;
}
public
Long
getAssetCategoryID
()
{
public
Long
getAssetCategoryID
()
{
return
assetCategoryID
;
}
public
void
setAssetCategoryID
(
Long
assetCategoryID
)
{
public
void
setAssetCategoryID
(
Long
assetCategoryID
)
{
this
.
assetCategoryID
=
assetCategoryID
;
}
public
String
getLocation
()
{
public
String
getLocation
()
{
return
location
;
}
public
void
setLocation
(
String
location
)
{
public
void
setLocation
(
String
location
)
{
this
.
location
=
location
;
}
public
Short
getStatus
()
{
public
Short
getStatus
()
{
return
status
;
}
public
void
setStatus
(
Short
status
)
{
public
void
setStatus
(
Short
status
)
{
this
.
status
=
status
;
}
public
Long
getUserID
()
{
public
Long
getUserID
()
{
return
userID
;
}
public
void
setUserID
(
Long
userID
)
{
public
void
setUserID
(
Long
userID
)
{
this
.
userID
=
userID
;
}
public
double
getPrice
()
{
public
double
getPrice
()
{
return
price
;
}
public
void
setPrice
(
double
price
)
{
public
void
setPrice
(
double
price
)
{
this
.
price
=
price
;
}
public
String
getPurchasedate
()
{
public
String
getPurchasedate
()
{
return
purchasedate
;
}
public
void
setPurchasedate
(
String
purchasedate
)
{
public
void
setPurchasedate
(
String
purchasedate
)
{
this
.
purchasedate
=
purchasedate
;
}
public
String
getPeriodofvalidity
()
{
public
String
getPeriodofvalidity
()
{
return
periodofvalidity
;
}
public
void
setPeriodofvalidity
(
String
periodofvalidity
)
{
public
void
setPeriodofvalidity
(
String
periodofvalidity
)
{
this
.
periodofvalidity
=
periodofvalidity
;
}
public
String
getWarrantydate
()
{
public
String
getWarrantydate
()
{
return
warrantydate
;
}
public
void
setWarrantydate
(
String
warrantydate
)
{
public
void
setWarrantydate
(
String
warrantydate
)
{
this
.
warrantydate
=
warrantydate
;
}
public
String
getLabels
()
{
public
String
getLabels
()
{
return
labels
;
}
public
void
setLabels
(
String
labels
)
{
public
void
setLabels
(
String
labels
)
{
this
.
labels
=
labels
;
}
public
Long
getSupplierID
()
{
public
Long
getSupplierID
()
{
return
supplierID
;
}
public
void
setSupplierID
(
Long
supplierID
)
{
public
void
setSupplierID
(
Long
supplierID
)
{
this
.
supplierID
=
supplierID
;
}
public
String
getAssetnum
()
{
public
String
getAssetnum
()
{
return
assetnum
;
}
public
void
setAssetnum
(
String
assetnum
)
{
public
void
setAssetnum
(
String
assetnum
)
{
this
.
assetnum
=
assetnum
;
}
public
String
getSerialnum
()
{
public
String
getSerialnum
()
{
return
serialnum
;
}
public
void
setSerialnum
(
String
serialnum
)
{
public
void
setSerialnum
(
String
serialnum
)
{
this
.
serialnum
=
serialnum
;
}
public
InputStream
getExcelStream
()
{
return
excelStream
;
}
public
void
setExcelStream
(
InputStream
excelStream
)
{
this
.
excelStream
=
excelStream
;
}
public
String
getFileName
()
{
return
fileName
;
}
public
void
setFileName
(
String
fileName
)
{
this
.
fileName
=
fileName
;
}
public
String
getIsAllData
()
{
return
isAllData
;
}
public
void
setIsAllData
(
String
isAllData
)
{
this
.
isAllData
=
isAllData
;
}
public
String
getBrowserType
()
{
return
browserType
;
}
public
void
setBrowserType
(
String
browserType
)
{
this
.
browserType
=
browserType
;
}
public
File
getAssetFile
()
{
return
assetFile
;
}
public
void
setAssetFile
(
File
assetFile
)
{
this
.
assetFile
=
assetFile
;
}
public
Integer
getIsCheck
()
{
public
InputStream
getExcelStream
()
{
return
excelStream
;
}
public
void
setExcelStream
(
InputStream
excelStream
)
{
this
.
excelStream
=
excelStream
;
}
public
String
getFileName
()
{
return
fileName
;
}
public
void
setFileName
(
String
fileName
)
{
this
.
fileName
=
fileName
;
}
public
String
getIsAllData
()
{
return
isAllData
;
}
public
void
setIsAllData
(
String
isAllData
)
{
this
.
isAllData
=
isAllData
;
}
public
String
getBrowserType
()
{
return
browserType
;
}
public
void
setBrowserType
(
String
browserType
)
{
this
.
browserType
=
browserType
;
}
public
File
getAssetFile
()
{
return
assetFile
;
}
public
void
setAssetFile
(
File
assetFile
)
{
this
.
assetFile
=
assetFile
;
}
public
Integer
getIsCheck
()
{
return
isCheck
;
}
public
void
setIsCheck
(
Integer
isCheck
)
{
public
void
setIsCheck
(
Integer
isCheck
)
{
this
.
isCheck
=
isCheck
;
}
public
String
getAssetFileContentType
()
{
return
assetFileContentType
;
}
public
String
getAssetFileContentType
()
{
return
assetFileContentType
;
}
public
void
setAssetFileContentType
(
String
assetFileContentType
)
{
this
.
assetFileContentType
=
assetFileContentType
;
}
public
void
setAssetFileContentType
(
String
assetFileContentType
)
{
this
.
assetFileContentType
=
assetFileContentType
;
}
public
String
getAssetFileFileName
()
{
return
assetFileFileName
;
}
public
String
getAssetFileFileName
()
{
return
assetFileFileName
;
}
public
void
setAssetFileFileName
(
String
assetFileFileName
)
{
this
.
assetFileFileName
=
assetFileFileName
;
}
public
void
setAssetFileFileName
(
String
assetFileFileName
)
{
this
.
assetFileFileName
=
assetFileFileName
;
}
}
src/main/java/com/jsh/model/vo/asset/AssetShowModel.java
View file @
07259995
...
...
@@ -5,39 +5,34 @@ import java.util.HashMap;
import
java.util.List
;
import
java.util.Map
;
@SuppressWarnings
({
"serial"
})
public
class
AssetShowModel
implements
Serializable
{
@SuppressWarnings
({
"serial"
})
public
class
AssetShowModel
implements
Serializable
{
/**
* 提示信息
*/
private
String
msgTip
=
""
;
/**
* 系统数据
*/
@SuppressWarnings
(
"rawtypes"
)
private
Map
<
String
,
List
>
map
=
new
HashMap
<
String
,
List
>();
private
Map
<
String
,
List
>
map
=
new
HashMap
<
String
,
List
>();
public
String
getMsgTip
()
{
public
String
getMsgTip
()
{
return
msgTip
;
}
public
void
setMsgTip
(
String
msgTip
)
{
public
void
setMsgTip
(
String
msgTip
)
{
this
.
msgTip
=
msgTip
;
}
@SuppressWarnings
(
"rawtypes"
)
public
Map
<
String
,
List
>
getMap
()
{
public
Map
<
String
,
List
>
getMap
()
{
return
map
;
}
@SuppressWarnings
(
"rawtypes"
)
public
void
setMap
(
Map
<
String
,
List
>
map
)
{
public
void
setMap
(
Map
<
String
,
List
>
map
)
{
this
.
map
=
map
;
}
}
Prev
1
2
3
4
5
6
7
8
9
…
11
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