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
Show 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
{
public
class
Assetname
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
assetname
;
private
Short
isystem
;
...
...
@@ -10,19 +9,16 @@ public class Assetname implements java.io.Serializable
private
String
description
;
private
Short
isconsumables
;
public
Assetname
()
{
public
Assetname
()
{
}
public
Assetname
(
Long
id
)
{
public
Assetname
(
Long
id
)
{
this
.
id
=
id
;
}
public
Assetname
(
String
assetname
,
Short
isystem
,
String
description
,
Short
isconsumables
,
Category
category
)
{
Short
isconsumables
,
Category
category
)
{
this
.
assetname
=
assetname
;
this
.
isystem
=
isystem
;
this
.
description
=
description
;
...
...
@@ -30,63 +26,51 @@ public class Assetname implements java.io.Serializable
this
.
category
=
category
;
}
public
Long
getId
()
{
public
Long
getId
()
{
return
this
.
id
;
}
public
void
setId
(
Long
id
)
{
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getAssetname
()
{
public
String
getAssetname
()
{
return
this
.
assetname
;
}
public
void
setAssetname
(
String
assetname
)
{
public
void
setAssetname
(
String
assetname
)
{
this
.
assetname
=
assetname
;
}
public
Short
getIsystem
()
{
public
Short
getIsystem
()
{
return
this
.
isystem
;
}
public
void
setIsystem
(
Short
isystem
)
{
public
void
setIsystem
(
Short
isystem
)
{
this
.
isystem
=
isystem
;
}
public
String
getDescription
()
{
public
String
getDescription
()
{
return
this
.
description
;
}
public
void
setDescription
(
String
description
)
{
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
Short
getIsconsumables
()
{
public
Short
getIsconsumables
()
{
return
this
.
isconsumables
;
}
public
void
setIsconsumables
(
Short
isconsumables
)
{
public
void
setIsconsumables
(
Short
isconsumables
)
{
this
.
isconsumables
=
isconsumables
;
}
public
Category
getCategory
()
{
public
Category
getCategory
()
{
return
category
;
}
public
void
setCategory
(
Category
category
)
{
public
void
setCategory
(
Category
category
)
{
this
.
category
=
category
;
}
...
...
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
{
public
class
Basicuser
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
username
;
private
String
loginame
;
...
...
@@ -17,20 +16,17 @@ public class Basicuser implements java.io.Serializable
private
String
description
;
private
String
remark
;
public
Basicuser
()
{
public
Basicuser
()
{
}
public
Basicuser
(
Long
id
)
{
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
)
{
String
remark
)
{
this
.
username
=
username
;
this
.
loginame
=
loginame
;
this
.
password
=
password
;
...
...
@@ -45,133 +41,107 @@ public class Basicuser implements java.io.Serializable
this
.
remark
=
remark
;
}
public
Long
getId
()
{
public
Long
getId
()
{
return
this
.
id
;
}
public
void
setId
(
Long
id
)
{
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getUsername
()
{
public
String
getUsername
()
{
return
this
.
username
;
}
public
void
setUsername
(
String
username
)
{
public
void
setUsername
(
String
username
)
{
this
.
username
=
username
;
}
public
String
getLoginame
()
{
public
String
getLoginame
()
{
return
this
.
loginame
;
}
public
void
setLoginame
(
String
loginame
)
{
public
void
setLoginame
(
String
loginame
)
{
this
.
loginame
=
loginame
;
}
public
String
getPassword
()
{
public
String
getPassword
()
{
return
this
.
password
;
}
public
void
setPassword
(
String
password
)
{
public
void
setPassword
(
String
password
)
{
this
.
password
=
password
;
}
public
String
getPosition
()
{
public
String
getPosition
()
{
return
this
.
position
;
}
public
void
setPosition
(
String
position
)
{
public
void
setPosition
(
String
position
)
{
this
.
position
=
position
;
}
public
String
getDepartment
()
{
public
String
getDepartment
()
{
return
this
.
department
;
}
public
void
setDepartment
(
String
department
)
{
public
void
setDepartment
(
String
department
)
{
this
.
department
=
department
;
}
public
String
getEmail
()
{
public
String
getEmail
()
{
return
this
.
email
;
}
public
void
setEmail
(
String
email
)
{
public
void
setEmail
(
String
email
)
{
this
.
email
=
email
;
}
public
String
getPhonenum
()
{
public
String
getPhonenum
()
{
return
this
.
phonenum
;
}
public
void
setPhonenum
(
String
phonenum
)
{
public
void
setPhonenum
(
String
phonenum
)
{
this
.
phonenum
=
phonenum
;
}
public
Short
getIsmanager
()
{
public
Short
getIsmanager
()
{
return
this
.
ismanager
;
}
public
void
setIsmanager
(
Short
ismanager
)
{
public
void
setIsmanager
(
Short
ismanager
)
{
this
.
ismanager
=
ismanager
;
}
public
Short
getIsystem
()
{
public
Short
getIsystem
()
{
return
this
.
isystem
;
}
public
void
setIsystem
(
Short
isystem
)
{
public
void
setIsystem
(
Short
isystem
)
{
this
.
isystem
=
isystem
;
}
public
Short
getStatus
()
{
public
Short
getStatus
()
{
return
this
.
status
;
}
public
void
setStatus
(
Short
status
)
{
public
void
setStatus
(
Short
status
)
{
this
.
status
=
status
;
}
public
String
getDescription
()
{
public
String
getDescription
()
{
return
this
.
description
;
}
public
void
setDescription
(
String
description
)
{
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
String
getRemark
()
{
public
String
getRemark
()
{
return
this
.
remark
;
}
public
void
setRemark
(
String
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
{
public
class
Category
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
assetname
;
private
Short
isystem
;
private
String
description
;
public
Category
()
{
public
Category
()
{
}
public
Category
(
Long
id
)
{
this
.
id
=
id
;
public
Category
(
Long
id
)
{
this
.
id
=
id
;
}
public
Category
(
String
assetname
,
Short
isystem
,
String
description
)
{
public
Category
(
String
assetname
,
Short
isystem
,
String
description
)
{
this
.
assetname
=
assetname
;
this
.
isystem
=
isystem
;
this
.
description
=
description
;
}
public
Long
getId
()
{
public
Long
getId
()
{
return
this
.
id
;
}
public
void
setId
(
Long
id
)
{
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getAssetname
()
{
public
String
getAssetname
()
{
return
this
.
assetname
;
}
public
void
setAssetname
(
String
assetname
)
{
public
void
setAssetname
(
String
assetname
)
{
this
.
assetname
=
assetname
;
}
public
Short
getIsystem
()
{
public
Short
getIsystem
()
{
return
this
.
isystem
;
}
public
void
setIsystem
(
Short
isystem
)
{
public
void
setIsystem
(
Short
isystem
)
{
this
.
isystem
=
isystem
;
}
public
String
getDescription
()
{
public
String
getDescription
()
{
return
this
.
description
;
}
public
void
setDescription
(
String
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
{
public
class
Depot
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
name
;
private
String
address
;
...
...
@@ -12,18 +11,15 @@ public class Depot implements java.io.Serializable
private
String
sort
;
private
String
remark
;
public
Depot
()
{
public
Depot
()
{
}
public
Depot
(
Long
id
)
{
this
.
id
=
id
;
public
Depot
(
Long
id
)
{
this
.
id
=
id
;
}
public
Depot
(
String
name
,
String
address
,
Double
warehousing
,
Double
truckage
,
Integer
type
,
String
sort
,
String
remark
)
{
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
;
...
...
src/main/java/com/jsh/model/po/DepotHead.java
View file @
07259995
...
...
@@ -3,8 +3,7 @@ package com.jsh.model.po;
import
java.sql.Timestamp
;
@SuppressWarnings
(
"serial"
)
public
class
DepotHead
implements
java
.
io
.
Serializable
{
public
class
DepotHead
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Type
;
private
String
SubType
;
...
...
@@ -34,20 +33,18 @@ public class DepotHead implements java.io.Serializable
private
Boolean
Status
=
false
;
//单据状态
private
String
Remark
;
public
DepotHead
()
{
public
DepotHead
()
{
}
public
DepotHead
(
Long
Id
)
{
this
.
Id
=
Id
;
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
)
{
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
;
...
...
@@ -59,10 +56,10 @@ public class DepotHead implements java.io.Serializable
OperTime
=
operTime
;
OrganId
=
organId
;
HandsPersonId
=
handsPersonId
;
Salesman
=
salesman
;
AccountIdList
=
accountIdList
;
AccountMoneyList
=
accountMoneyList
;
Discount
=
discount
;
Salesman
=
salesman
;
AccountIdList
=
accountIdList
;
AccountMoneyList
=
accountMoneyList
;
Discount
=
discount
;
DiscountMoney
=
discountMoney
;
DiscountLastMoney
=
discountLastMoney
;
OtherMoney
=
otherMoney
;
...
...
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
{
public
class
DepotItem
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
DepotHead
HeaderId
;
private
Material
MaterialId
;
...
...
@@ -27,14 +26,12 @@ public class DepotItem implements java.io.Serializable
private
String
MType
;
//商品类型
public
DepotItem
()
{
public
DepotItem
()
{
}
public
DepotItem
(
Long
Id
)
{
this
.
Id
=
Id
;
public
DepotItem
(
Long
Id
)
{
this
.
Id
=
Id
;
}
public
DepotItem
(
DepotHead
headerId
,
Material
materialId
,
String
mUnit
,
...
...
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
{
public
class
Functions
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Number
;
private
String
Name
;
...
...
@@ -14,8 +13,7 @@ public class Functions implements java.io.Serializable
private
String
Type
;
private
String
PushBtn
;
public
Functions
()
{
public
Functions
()
{
}
...
...
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,8 +3,7 @@ package com.jsh.model.po;
import
java.sql.Timestamp
;
@SuppressWarnings
(
"serial"
)
public
class
Logdetails
implements
java
.
io
.
Serializable
{
public
class
Logdetails
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
Basicuser
user
;
...
...
@@ -15,20 +14,17 @@ public class Logdetails implements java.io.Serializable
private
String
contentdetails
;
private
String
remark
;
public
Logdetails
()
{
public
Logdetails
()
{
}
public
Logdetails
(
Long
id
)
{
public
Logdetails
(
Long
id
)
{
this
.
id
=
id
;
}
public
Logdetails
(
Basicuser
user
,
String
operation
,
String
clientIp
,
Timestamp
createtime
,
Short
status
,
String
contentdetails
,
String
remark
)
{
String
remark
)
{
this
.
user
=
user
;
this
.
operation
=
operation
;
this
.
clientIp
=
clientIp
;
...
...
@@ -38,13 +34,11 @@ public class Logdetails implements java.io.Serializable
this
.
remark
=
remark
;
}
public
Long
getId
()
{
public
Long
getId
()
{
return
this
.
id
;
}
public
void
setId
(
Long
id
)
{
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
...
...
@@ -56,63 +50,51 @@ public class Logdetails implements java.io.Serializable
this
.
user
=
user
;
}
public
String
getOperation
()
{
public
String
getOperation
()
{
return
this
.
operation
;
}
public
void
setOperation
(
String
operation
)
{
public
void
setOperation
(
String
operation
)
{
this
.
operation
=
operation
;
}
public
String
getClientIp
()
{
public
String
getClientIp
()
{
return
this
.
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
Timestamp
getCreatetime
()
{
public
Timestamp
getCreatetime
()
{
return
this
.
createtime
;
}
public
void
setCreatetime
(
Timestamp
createtime
)
{
public
void
setCreatetime
(
Timestamp
createtime
)
{
this
.
createtime
=
createtime
;
}
public
Short
getStatus
()
{
public
Short
getStatus
()
{
return
this
.
status
;
}
public
void
setStatus
(
Short
status
)
{
public
void
setStatus
(
Short
status
)
{
this
.
status
=
status
;
}
public
String
getContentdetails
()
{
public
String
getContentdetails
()
{
return
this
.
contentdetails
;
}
public
void
setContentdetails
(
String
contentdetails
)
{
public
void
setContentdetails
(
String
contentdetails
)
{
this
.
contentdetails
=
contentdetails
;
}
public
String
getRemark
()
{
public
String
getRemark
()
{
return
this
.
remark
;
}
public
void
setRemark
(
String
remark
)
{
public
void
setRemark
(
String
remark
)
{
this
.
remark
=
remark
;
}
...
...
src/main/java/com/jsh/model/po/Material.java
View file @
07259995
...
...
@@ -3,8 +3,7 @@ package com.jsh.model.po;
import
java.util.Map
;
@SuppressWarnings
(
"serial"
)
public
class
Material
implements
java
.
io
.
Serializable
{
public
class
Material
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
MaterialCategory
materialCategory
;
private
String
Name
;
...
...
@@ -33,7 +32,7 @@ public class Material implements java.io.Serializable
/**
* 类型 right--正确 warn--警告 wrong--错误
*/
private
Map
<
Integer
,
String
>
cellInfo
;
private
Map
<
Integer
,
String
>
cellInfo
;
/**
* 行号
...
...
@@ -42,13 +41,11 @@ public class Material implements java.io.Serializable
private
String
safetyStockStr
;
public
Material
()
{
public
Material
()
{
}
public
Material
(
Long
Id
)
{
public
Material
(
Long
Id
)
{
this
.
Id
=
Id
;
}
...
...
@@ -82,43 +79,35 @@ public class Material implements java.io.Serializable
OtherField3
=
otherField3
;
}
public
Long
getId
()
{
public
Long
getId
()
{
return
Id
;
}
public
void
setId
(
Long
id
)
{
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
MaterialCategory
getMaterialCategory
()
{
public
MaterialCategory
getMaterialCategory
()
{
return
materialCategory
;
}
public
void
setMaterialCategory
(
MaterialCategory
materialCategory
)
{
public
void
setMaterialCategory
(
MaterialCategory
materialCategory
)
{
this
.
materialCategory
=
materialCategory
;
}
public
String
getName
()
{
public
String
getName
()
{
return
Name
;
}
public
void
setName
(
String
name
)
{
public
void
setName
(
String
name
)
{
Name
=
name
;
}
public
String
getModel
()
{
public
String
getModel
()
{
return
Model
;
}
public
void
setModel
(
String
model
)
{
public
void
setModel
(
String
model
)
{
Model
=
model
;
}
...
...
@@ -130,13 +119,11 @@ public class Material implements java.io.Serializable
Standard
=
standard
;
}
public
String
getColor
()
{
public
String
getColor
()
{
return
Color
;
}
public
void
setColor
(
String
color
)
{
public
void
setColor
(
String
color
)
{
Color
=
color
;
}
...
...
@@ -148,53 +135,43 @@ public class Material implements java.io.Serializable
Unit
=
unit
;
}
public
void
setRetailPrice
(
Double
retailPrice
)
{
RetailPrice
=
retailPrice
;
}
public
Double
getRetailPrice
()
{
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
()
{
public
void
setPresetPriceTwo
(
Double
presetPriceTwo
)
{
PresetPriceTwo
=
presetPriceTwo
;
}
public
String
getRemark
()
{
return
Remark
;
}
public
void
setRemark
(
String
remark
)
{
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
...
...
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
{
public
class
MaterialCategory
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Name
;
private
Short
CategoryLevel
;
private
MaterialCategory
materialCategory
;
public
MaterialCategory
()
{
public
MaterialCategory
()
{
}
public
MaterialCategory
(
Long
Id
)
{
public
MaterialCategory
(
Long
Id
)
{
this
.
Id
=
Id
;
}
...
...
src/main/java/com/jsh/model/po/MaterialProperty.java
View file @
07259995
...
...
@@ -12,12 +12,11 @@ public class MaterialProperty implements java.io.Serializable {
}
public
MaterialProperty
(
Long
id
)
{
public
MaterialProperty
(
Long
id
)
{
this
.
id
=
id
;
}
public
MaterialProperty
(
String
nativeName
,
Boolean
enabled
,
String
sort
,
String
anotherName
)
{
public
MaterialProperty
(
String
nativeName
,
Boolean
enabled
,
String
sort
,
String
anotherName
)
{
nativeName
=
nativeName
;
enabled
=
enabled
;
sort
=
sort
;
...
...
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
{
public
class
Person
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Type
;
private
String
Name
;
public
Person
()
{
public
Person
()
{
}
public
Person
(
Long
Id
)
{
public
Person
(
Long
Id
)
{
this
.
Id
=
Id
;
}
...
...
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
{
public
class
Role
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Name
;
public
Role
()
{
public
Role
()
{
}
...
...
src/main/java/com/jsh/model/po/Supplier.java
View file @
07259995
...
...
@@ -3,9 +3,8 @@ package com.jsh.model.po;
import
java.util.Map
;
@SuppressWarnings
(
"serial"
)
public
class
Supplier
implements
java
.
io
.
Serializable
{
private
Long
id
=
0
l
;
public
class
Supplier
implements
java
.
io
.
Serializable
{
private
Long
id
=
0
l
;
private
String
supplier
=
""
;
private
String
type
=
""
;
private
String
contacts
=
""
;
...
...
@@ -31,7 +30,7 @@ public class Supplier implements java.io.Serializable
/**
* 类型 right--正确 warn--警告 wrong--错误
*/
private
Map
<
Integer
,
String
>
cellInfo
;
private
Map
<
Integer
,
String
>
cellInfo
;
/**
* 行号
...
...
@@ -49,20 +48,18 @@ public class Supplier implements java.io.Serializable
private
String
enabledStr
;
public
Supplier
()
{
public
Supplier
()
{
}
public
Supplier
(
Long
id
)
{
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
)
{
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
;
...
...
@@ -86,18 +83,15 @@ public class Supplier implements java.io.Serializable
this
.
taxRate
=
taxRate
;
}
public
Long
getId
()
{
public
Long
getId
()
{
return
id
;
}
public
void
setId
(
Long
id
)
{
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
public
String
getSupplier
()
{
public
String
getSupplier
()
{
return
supplier
;
}
...
...
@@ -137,46 +131,38 @@ public class Supplier implements java.io.Serializable
this
.
email
=
email
;
}
public
void
setBeginNeedGet
(
Double
beginNeedGet
)
{
BeginNeedGet
=
beginNeedGet
;
}
public
Double
getBeginNeedGet
()
{
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
void
setAllNeedPay
(
Double
allNeedPay
)
{
AllNeedPay
=
allNeedPay
;
}
public
Short
getIsystem
()
{
return
isystem
;
}
...
...
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
{
public
class
SystemConfig
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
type
;
private
String
name
;
...
...
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
{
public
class
Unit
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
UName
;
public
Unit
()
{
public
Unit
()
{
}
...
...
@@ -15,8 +13,7 @@ public class Unit implements java.io.Serializable
this
.
id
=
id
;
}
public
Unit
(
String
UName
)
{
public
Unit
(
String
UName
)
{
this
.
UName
=
UName
;
}
...
...
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
{
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
UserBusiness
()
{
}
...
...
src/main/java/com/jsh/model/vo/asset/AssetModel.java
View file @
07259995
...
...
@@ -5,8 +5,7 @@ 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
();
...
...
@@ -14,12 +13,12 @@ public class AssetModel implements Serializable
/**
* 资产名称ID
*/
private
Long
assetNameID
;
private
Long
assetNameID
;
/**
* 资产类型ID
*/
private
Long
assetCategoryID
;
private
Long
assetCategoryID
;
/**
* 位置属性
...
...
@@ -29,12 +28,12 @@ public class AssetModel implements Serializable
/**
* 状态属性
*/
private
Short
status
;
private
Short
status
;
/**
* 用户ID
*/
private
Long
userID
;
private
Long
userID
;
/**
* 资产单价
...
...
@@ -147,283 +146,227 @@ public class AssetModel implements Serializable
*/
private
Integer
isCheck
;
public
AssetShowModel
getShowModel
()
{
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
()
{
public
InputStream
getExcelStream
()
{
return
excelStream
;
}
public
void
setExcelStream
(
InputStream
excelStream
)
{
public
void
setExcelStream
(
InputStream
excelStream
)
{
this
.
excelStream
=
excelStream
;
}
public
String
getFileName
()
{
public
String
getFileName
()
{
return
fileName
;
}
public
void
setFileName
(
String
fileName
)
{
public
void
setFileName
(
String
fileName
)
{
this
.
fileName
=
fileName
;
}
public
String
getIsAllData
()
{
public
String
getIsAllData
()
{
return
isAllData
;
}
public
void
setIsAllData
(
String
isAllData
)
{
public
void
setIsAllData
(
String
isAllData
)
{
this
.
isAllData
=
isAllData
;
}
public
String
getBrowserType
()
{
public
String
getBrowserType
()
{
return
browserType
;
}
public
void
setBrowserType
(
String
browserType
)
{
public
void
setBrowserType
(
String
browserType
)
{
this
.
browserType
=
browserType
;
}
public
File
getAssetFile
()
{
public
File
getAssetFile
()
{
return
assetFile
;
}
public
void
setAssetFile
(
File
assetFile
)
{
public
void
setAssetFile
(
File
assetFile
)
{
this
.
assetFile
=
assetFile
;
}
public
Integer
getIsCheck
()
{
public
Integer
getIsCheck
()
{
return
isCheck
;
}
public
void
setIsCheck
(
Integer
isCheck
)
{
public
void
setIsCheck
(
Integer
isCheck
)
{
this
.
isCheck
=
isCheck
;
}
public
String
getAssetFileContentType
()
{
public
String
getAssetFileContentType
()
{
return
assetFileContentType
;
}
public
void
setAssetFileContentType
(
String
assetFileContentType
)
{
public
void
setAssetFileContentType
(
String
assetFileContentType
)
{
this
.
assetFileContentType
=
assetFileContentType
;
}
public
String
getAssetFileFileName
()
{
public
String
getAssetFileFileName
()
{
return
assetFileFileName
;
}
public
void
setAssetFileFileName
(
String
assetFileFileName
)
{
public
void
setAssetFileFileName
(
String
assetFileFileName
)
{
this
.
assetFileFileName
=
assetFileFileName
;
}
}
src/main/java/com/jsh/model/vo/asset/AssetShowModel.java
View file @
07259995
...
...
@@ -5,9 +5,8 @@ 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
{
/**
* 提示信息
*/
...
...
@@ -17,27 +16,23 @@ public class AssetShowModel implements Serializable
* 系统数据
*/
@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