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
e85498f6
Commit
e85498f6
authored
Feb 15, 2017
by
季圣华
Browse files
升级代码结构,采用Maven来管理jar包(10)
parent
11f18afa
Changes
185
Hide whitespace changes
Inline
Side-by-side
src/main/java/com/jsh/model/po/DepotItem.java
0 → 100644
View file @
e85498f6
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
DepotItem
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
DepotHead
HeaderId
;
private
Material
MaterialId
;
private
Double
OperNumber
;
private
Double
UnitPrice
;
private
Double
AllPrice
;
private
String
Remark
;
private
String
Img
;
public
DepotItem
()
{
}
public
DepotItem
(
Long
Id
)
{
this
.
Id
=
Id
;
}
public
DepotItem
(
DepotHead
headerId
,
Material
materialId
,
Double
operNumber
,
Double
unitPrice
,
Double
allPrice
,
String
remark
,
String
img
)
{
super
();
HeaderId
=
headerId
;
MaterialId
=
materialId
;
OperNumber
=
operNumber
;
UnitPrice
=
unitPrice
;
AllPrice
=
allPrice
;
Remark
=
remark
;
Img
=
img
;
}
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
Double
getOperNumber
()
{
return
OperNumber
;
}
public
void
setOperNumber
(
Double
operNumber
)
{
OperNumber
=
operNumber
;
}
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
;
}
}
src/main/java/com/jsh/model/po/Functions.java
0 → 100644
View file @
e85498f6
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
;
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
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/InOutItem.java
0 → 100644
View file @
e85498f6
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
InOutItem
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
String
Name
;
private
String
Type
;
private
String
Remark
;
public
InOutItem
()
{
}
public
InOutItem
(
Long
Id
)
{
this
.
Id
=
Id
;
}
public
InOutItem
(
String
name
,
String
type
,
String
remark
)
{
Name
=
name
;
Type
=
type
;
Remark
=
remark
;
}
public
void
setId
(
Long
id
)
{
Id
=
id
;
}
public
Long
getId
()
{
return
Id
;
}
public
void
setName
(
String
name
)
{
Name
=
name
;
}
public
String
getName
()
{
return
Name
;
}
public
void
setType
(
String
type
)
{
Type
=
type
;
}
public
String
getType
()
{
return
Type
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
public
String
getRemark
()
{
return
Remark
;
}
}
src/main/java/com/jsh/model/po/Logdetails.java
0 → 100644
View file @
e85498f6
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
()
{
return
user
;
}
public
void
setUser
(
Basicuser
user
)
{
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
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/Material.java
0 → 100644
View file @
e85498f6
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
Material
implements
java
.
io
.
Serializable
{
private
Long
Id
;
private
MaterialCategory
materialCategory
;
private
String
Name
;
private
String
Model
;
private
String
Color
;
private
String
Unit
;
private
Double
RetailPrice
;
private
Double
LowPrice
;
private
Double
PresetPriceOne
;
private
Double
PresetPriceTwo
;
private
String
Remark
;
public
Material
()
{
}
public
Material
(
Long
Id
)
{
this
.
Id
=
Id
;
}
public
Material
(
MaterialCategory
materialCategory
,
String
name
,
String
model
,
String
color
,
String
unit
,
String
remark
,
Double
retailPrice
,
Double
lowPrice
,
Double
presetPriceOne
,
Double
presetPriceTwo
)
{
super
();
this
.
materialCategory
=
materialCategory
;
Name
=
name
;
Model
=
model
;
Color
=
color
;
Unit
=
unit
;
RetailPrice
=
retailPrice
;
LowPrice
=
lowPrice
;
PresetPriceOne
=
presetPriceOne
;
PresetPriceTwo
=
presetPriceTwo
;
Remark
=
remark
;
}
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
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
;
}
public
Double
getRetailPrice
()
{
return
RetailPrice
;
}
public
void
setLowPrice
(
Double
lowPrice
)
{
LowPrice
=
lowPrice
;
}
public
Double
getLowPrice
()
{
return
LowPrice
;
}
public
void
setPresetPriceOne
(
Double
presetPriceOne
)
{
PresetPriceOne
=
presetPriceOne
;
}
public
Double
getPresetPriceOne
()
{
return
PresetPriceOne
;
}
public
void
setPresetPriceTwo
(
Double
presetPriceTwo
)
{
PresetPriceTwo
=
presetPriceTwo
;
}
public
Double
getPresetPriceTwo
()
{
return
PresetPriceTwo
;
}
public
String
getRemark
()
{
return
Remark
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
}
src/main/java/com/jsh/model/po/MaterialCategory.java
0 → 100644
View file @
e85498f6
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
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/Person.java
0 → 100644
View file @
e85498f6
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
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/Role.java
0 → 100644
View file @
e85498f6
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
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/po/Supplier.java
0 → 100644
View file @
e85498f6
package
com.jsh.model.po
;
@SuppressWarnings
(
"serial"
)
public
class
Supplier
implements
java
.
io
.
Serializable
{
private
Long
id
;
private
String
supplier
;
private
String
type
;
private
String
contacts
;
private
String
phonenum
;
private
String
email
;
private
Double
BeginNeedGet
;
private
Double
BeginNeedPay
;
private
Double
AllNeedGet
;
private
Double
AllNeedPay
;
private
Short
isystem
;
private
String
description
;
private
Boolean
enabled
;
public
Supplier
()
{
}
public
Supplier
(
Long
id
)
{
this
.
id
=
id
;
}
public
Supplier
(
String
supplier
,
String
type
,
String
contacts
,
String
phonenum
,
String
email
,
Short
isystem
,
String
description
,
Boolean
enabled
,
Double
beginNeedGet
,
Double
beginNeedPay
,
Double
allNeedGet
,
Double
allNeedPay
)
{
super
();
this
.
supplier
=
supplier
;
this
.
type
=
type
;
this
.
contacts
=
contacts
;
this
.
phonenum
=
phonenum
;
this
.
email
=
email
;
this
.
BeginNeedGet
=
beginNeedGet
;
this
.
BeginNeedPay
=
beginNeedPay
;
this
.
AllNeedGet
=
allNeedGet
;
this
.
AllNeedPay
=
allNeedPay
;
this
.
isystem
=
isystem
;
this
.
description
=
description
;
this
.
enabled
=
enabled
;
}
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
;
}
public
Double
getBeginNeedGet
()
{
return
BeginNeedGet
;
}
public
void
setBeginNeedPay
(
Double
beginNeedPay
)
{
BeginNeedPay
=
beginNeedPay
;
}
public
Double
getBeginNeedPay
()
{
return
BeginNeedPay
;
}
public
void
setAllNeedGet
(
Double
allNeedGet
)
{
AllNeedGet
=
allNeedGet
;
}
public
Double
getAllNeedGet
()
{
return
AllNeedGet
;
}
public
void
setAllNeedPay
(
Double
allNeedPay
)
{
AllNeedPay
=
allNeedPay
;
}
public
Double
getAllNeedPay
()
{
return
AllNeedPay
;
}
public
Short
getIsystem
()
{
return
isystem
;
}
public
void
setIsystem
(
Short
isystem
)
{
this
.
isystem
=
isystem
;
}
public
String
getDescription
()
{
return
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
Boolean
getEnabled
()
{
return
enabled
;
}
public
void
setEnabled
(
Boolean
enabled
)
{
this
.
enabled
=
enabled
;
}
}
src/main/java/com/jsh/model/po/UserBusiness.java
0 → 100644
View file @
e85498f6
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
;
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
;
}
}
\ No newline at end of file
src/main/java/com/jsh/model/vo/asset/AssetModel.java
0 → 100644
View file @
e85498f6
package
com.jsh.model.vo.asset
;
import
java.io.File
;
import
java.io.InputStream
;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
AssetModel
implements
Serializable
{
private
AssetShowModel
showModel
=
new
AssetShowModel
();
/**======开始接受页面参数=================**/
/**
* 资产名称ID
*/
private
Long
assetNameID
;
/**
* 资产类型ID
*/
private
Long
assetCategoryID
;
/**
* 位置属性
*/
private
String
location
=
""
;
/**
* 状态属性
*/
private
Short
status
;
/**
* 用户ID
*/
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
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
()
{
return
showModel
;
}
public
void
setShowModel
(
AssetShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
String
getDescription
()
{
return
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
Long
getAssetID
()
{
return
assetID
;
}
public
void
setAssetID
(
Long
assetID
)
{
this
.
assetID
=
assetID
;
}
public
String
getAssetIDs
()
{
return
assetIDs
;
}
public
void
setAssetIDs
(
String
assetIDs
)
{
this
.
assetIDs
=
assetIDs
;
}
public
int
getPageSize
()
{
return
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
int
getPageNo
()
{
return
pageNo
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
Long
getAssetNameID
()
{
return
assetNameID
;
}
public
void
setAssetNameID
(
Long
assetNameID
)
{
this
.
assetNameID
=
assetNameID
;
}
public
Long
getAssetCategoryID
()
{
return
assetCategoryID
;
}
public
void
setAssetCategoryID
(
Long
assetCategoryID
)
{
this
.
assetCategoryID
=
assetCategoryID
;
}
public
String
getLocation
()
{
return
location
;
}
public
void
setLocation
(
String
location
)
{
this
.
location
=
location
;
}
public
Short
getStatus
()
{
return
status
;
}
public
void
setStatus
(
Short
status
)
{
this
.
status
=
status
;
}
public
Long
getUserID
()
{
return
userID
;
}
public
void
setUserID
(
Long
userID
)
{
this
.
userID
=
userID
;
}
public
double
getPrice
()
{
return
price
;
}
public
void
setPrice
(
double
price
)
{
this
.
price
=
price
;
}
public
String
getPurchasedate
()
{
return
purchasedate
;
}
public
void
setPurchasedate
(
String
purchasedate
)
{
this
.
purchasedate
=
purchasedate
;
}
public
String
getPeriodofvalidity
()
{
return
periodofvalidity
;
}
public
void
setPeriodofvalidity
(
String
periodofvalidity
)
{
this
.
periodofvalidity
=
periodofvalidity
;
}
public
String
getWarrantydate
()
{
return
warrantydate
;
}
public
void
setWarrantydate
(
String
warrantydate
)
{
this
.
warrantydate
=
warrantydate
;
}
public
String
getLabels
()
{
return
labels
;
}
public
void
setLabels
(
String
labels
)
{
this
.
labels
=
labels
;
}
public
Long
getSupplierID
()
{
return
supplierID
;
}
public
void
setSupplierID
(
Long
supplierID
)
{
this
.
supplierID
=
supplierID
;
}
public
String
getAssetnum
()
{
return
assetnum
;
}
public
void
setAssetnum
(
String
assetnum
)
{
this
.
assetnum
=
assetnum
;
}
public
String
getSerialnum
()
{
return
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
()
{
return
isCheck
;
}
public
void
setIsCheck
(
Integer
isCheck
)
{
this
.
isCheck
=
isCheck
;
}
public
String
getAssetFileContentType
()
{
return
assetFileContentType
;
}
public
void
setAssetFileContentType
(
String
assetFileContentType
)
{
this
.
assetFileContentType
=
assetFileContentType
;
}
public
String
getAssetFileFileName
()
{
return
assetFileFileName
;
}
public
void
setAssetFileFileName
(
String
assetFileFileName
)
{
this
.
assetFileFileName
=
assetFileFileName
;
}
}
src/main/java/com/jsh/model/vo/asset/AssetShowModel.java
0 → 100644
View file @
e85498f6
package
com.jsh.model.vo.asset
;
import
java.io.Serializable
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
@SuppressWarnings
({
"serial"
})
public
class
AssetShowModel
implements
Serializable
{
/**
* 提示信息
*/
private
String
msgTip
=
""
;
/**
* 系统数据
*/
@SuppressWarnings
(
"rawtypes"
)
private
Map
<
String
,
List
>
map
=
new
HashMap
<
String
,
List
>();
public
String
getMsgTip
()
{
return
msgTip
;
}
public
void
setMsgTip
(
String
msgTip
)
{
this
.
msgTip
=
msgTip
;
}
@SuppressWarnings
(
"rawtypes"
)
public
Map
<
String
,
List
>
getMap
()
{
return
map
;
}
@SuppressWarnings
(
"rawtypes"
)
public
void
setMap
(
Map
<
String
,
List
>
map
)
{
this
.
map
=
map
;
}
}
src/main/java/com/jsh/model/vo/asset/ReportModel.java
0 → 100644
View file @
e85498f6
package
com.jsh.model.vo.asset
;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
ReportModel
implements
Serializable
{
private
ReportShowModel
showModel
=
new
ReportShowModel
();
/**======开始接受页面参数=================**/
/**
* 资产名称ID
*/
private
Long
assetNameID
;
/**
* 资产类型ID
*/
private
Long
assetCategoryID
;
/**
* 位置属性
*/
private
String
location
=
""
;
/**
* 状态属性
*/
private
Short
status
;
/**
* 用户ID
*/
private
Long
usernameID
;
/**
* 资产单价
*/
private
float
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
String
description
=
""
;
/**
* 资产ID
*/
private
Long
assetID
;
/**
* 资产IDs 批量操作使用
*/
private
String
assetIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
10
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
/**
* 报表类型
*/
private
Integer
reportType
;
public
ReportShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setShowModel
(
ReportShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
Long
getAssetNameID
()
{
return
assetNameID
;
}
public
void
setAssetNameID
(
Long
assetNameID
)
{
this
.
assetNameID
=
assetNameID
;
}
public
Long
getAssetCategoryID
()
{
return
assetCategoryID
;
}
public
void
setAssetCategoryID
(
Long
assetCategoryID
)
{
this
.
assetCategoryID
=
assetCategoryID
;
}
public
String
getLocation
()
{
return
location
;
}
public
void
setLocation
(
String
location
)
{
this
.
location
=
location
;
}
public
Short
getStatus
()
{
return
status
;
}
public
void
setStatus
(
Short
status
)
{
this
.
status
=
status
;
}
public
Long
getUsernameID
()
{
return
usernameID
;
}
public
void
setUsernameID
(
Long
usernameID
)
{
this
.
usernameID
=
usernameID
;
}
public
float
getPrice
()
{
return
price
;
}
public
void
setPrice
(
float
price
)
{
this
.
price
=
price
;
}
public
String
getPurchasedate
()
{
return
purchasedate
;
}
public
void
setPurchasedate
(
String
purchasedate
)
{
this
.
purchasedate
=
purchasedate
;
}
public
String
getPeriodofvalidity
()
{
return
periodofvalidity
;
}
public
void
setPeriodofvalidity
(
String
periodofvalidity
)
{
this
.
periodofvalidity
=
periodofvalidity
;
}
public
String
getWarrantydate
()
{
return
warrantydate
;
}
public
void
setWarrantydate
(
String
warrantydate
)
{
this
.
warrantydate
=
warrantydate
;
}
public
String
getAssetnum
()
{
return
assetnum
;
}
public
void
setAssetnum
(
String
assetnum
)
{
this
.
assetnum
=
assetnum
;
}
public
String
getSerialnum
()
{
return
serialnum
;
}
public
void
setSerialnum
(
String
serialnum
)
{
this
.
serialnum
=
serialnum
;
}
public
String
getLabels
()
{
return
labels
;
}
public
void
setLabels
(
String
labels
)
{
this
.
labels
=
labels
;
}
public
Long
getSupplierID
()
{
return
supplierID
;
}
public
void
setSupplierID
(
Long
supplierID
)
{
this
.
supplierID
=
supplierID
;
}
public
String
getDescription
()
{
return
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
Long
getAssetID
()
{
return
assetID
;
}
public
void
setAssetID
(
Long
assetID
)
{
this
.
assetID
=
assetID
;
}
public
String
getAssetIDs
()
{
return
assetIDs
;
}
public
void
setAssetIDs
(
String
assetIDs
)
{
this
.
assetIDs
=
assetIDs
;
}
public
int
getPageSize
()
{
return
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
int
getPageNo
()
{
return
pageNo
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
Integer
getReportType
()
{
return
reportType
;
}
public
void
setReportType
(
Integer
reportType
)
{
this
.
reportType
=
reportType
;
}
}
src/main/java/com/jsh/model/vo/asset/ReportShowModel.java
0 → 100644
View file @
e85498f6
package
com.jsh.model.vo.asset
;
import
java.io.Serializable
;
import
java.util.ArrayList
;
import
java.util.List
;
@SuppressWarnings
({
"serial"
,
"rawtypes"
})
public
class
ReportShowModel
implements
Serializable
{
//保存报表数据
private
List
reportData
=
new
ArrayList
();
//保存提示信息
private
String
msgTip
=
""
;
public
List
getReportData
()
{
return
reportData
;
}
public
void
setReportData
(
List
reportData
)
{
this
.
reportData
=
reportData
;
}
public
String
getMsgTip
()
{
return
msgTip
;
}
public
void
setMsgTip
(
String
msgTip
)
{
this
.
msgTip
=
msgTip
;
}
}
src/main/java/com/jsh/model/vo/basic/AccountModel.java
0 → 100644
View file @
e85498f6
package
com.jsh.model.vo.basic
;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
AccountModel
implements
Serializable
{
private
AccountShowModel
showModel
=
new
AccountShowModel
();
/**======开始接受页面参数=================**/
/**
* 名称
*/
private
String
name
=
""
;
/**
* 编号
*/
private
String
serialNo
=
""
;
/**
* 期初金额
*/
private
Double
initialAmount
;
/**
* 当前余额
*/
private
Double
currentAmount
;
/**
* 备注
*/
private
String
remark
=
""
;
/**
* 分类ID
*/
private
Long
accountID
=
0
l
;
/**
* 分类IDs 批量操作使用
*/
private
String
accountIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
10
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
public
void
setShowModel
(
AccountShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
AccountShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
String
getName
()
{
return
name
;
}
public
void
setSerialNo
(
String
serialNo
)
{
this
.
serialNo
=
serialNo
;
}
public
String
getSerialNo
()
{
return
serialNo
;
}
public
void
setInitialAmount
(
Double
initialAmount
)
{
this
.
initialAmount
=
initialAmount
;
}
public
Double
getInitialAmount
()
{
return
initialAmount
;
}
public
void
setCurrentAmount
(
Double
currentAmount
)
{
this
.
currentAmount
=
currentAmount
;
}
public
Double
getCurrentAmount
()
{
return
currentAmount
;
}
public
void
setRemark
(
String
remark
)
{
this
.
remark
=
remark
;
}
public
String
getRemark
()
{
return
remark
;
}
public
void
setAccountID
(
Long
accountID
)
{
this
.
accountID
=
accountID
;
}
public
Long
getAccountID
()
{
return
accountID
;
}
public
void
setAccountIDs
(
String
accountIDs
)
{
this
.
accountIDs
=
accountIDs
;
}
public
String
getAccountIDs
()
{
return
accountIDs
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
int
getPageSize
()
{
return
pageSize
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
int
getPageNo
()
{
return
pageNo
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
}
src/main/java/com/jsh/model/vo/basic/AccountShowModel.java
0 → 100644
View file @
e85498f6
package
com.jsh.model.vo.basic
;
import
java.io.Serializable
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
@SuppressWarnings
(
"serial"
)
public
class
AccountShowModel
implements
Serializable
{
/**
* 提示信息
*/
private
String
msgTip
=
""
;
/**
* 系统数据
*/
@SuppressWarnings
(
"rawtypes"
)
private
Map
<
String
,
List
>
map
=
new
HashMap
<
String
,
List
>();
public
String
getMsgTip
()
{
return
msgTip
;
}
public
void
setMsgTip
(
String
msgTip
)
{
this
.
msgTip
=
msgTip
;
}
@SuppressWarnings
(
"rawtypes"
)
public
Map
<
String
,
List
>
getMap
()
{
return
map
;
}
@SuppressWarnings
(
"rawtypes"
)
public
void
setMap
(
Map
<
String
,
List
>
map
)
{
this
.
map
=
map
;
}
}
src/main/java/com/jsh/model/vo/basic/AppModel.java
0 → 100644
View file @
e85498f6
package
com.jsh.model.vo.basic
;
import
java.io.File
;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
AppModel
implements
Serializable
{
private
AppShowModel
showModel
=
new
AppShowModel
();
/**======开始接受页面参数=================**/
/**
* 代号
*/
private
String
Number
=
""
;
/**
* 名称
*/
private
String
Name
=
""
;
/**
* 类型
*/
private
String
Type
=
""
;
/**
* 图标
*/
private
String
Icon
=
""
;
/**
* 链接
*/
private
String
URL
=
""
;
/**
* 宽度
*/
private
String
Width
=
""
;
/**
* 高度
*/
private
String
Height
=
""
;
/**
* 拉伸
*/
private
Boolean
ReSize
=
false
;
/**
* 最大化
*/
private
Boolean
OpenMax
=
false
;
/**
* Flash
*/
private
Boolean
Flash
=
false
;
/**
* 种类
*/
private
String
ZL
=
""
;
/**
* 排序号
*/
private
String
Sort
=
""
;
/**
* 备注
*/
private
String
Remark
=
""
;
/**
* 启用
*/
private
Boolean
Enabled
=
false
;
/**
* 分类ID
*/
private
Long
appID
=
0
l
;
/**
* 分类IDs 批量操作使用
*/
private
String
appIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
10
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
/**
* UBType,UserBusiness类型
*/
private
String
UBType
=
""
;
/**
* UBKeyId,UserBusiness关键id
*/
private
String
UBKeyId
=
""
;
public
AppShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setShowModel
(
AppShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
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
getType
()
{
return
Type
;
}
public
void
setType
(
String
type
)
{
Type
=
type
;
}
public
String
getIcon
()
{
return
Icon
;
}
public
void
setIcon
(
String
icon
)
{
Icon
=
icon
;
}
public
String
getURL
()
{
return
URL
;
}
public
void
setURL
(
String
uRL
)
{
URL
=
uRL
;
}
public
String
getWidth
()
{
return
Width
;
}
public
void
setWidth
(
String
width
)
{
Width
=
width
;
}
public
String
getHeight
()
{
return
Height
;
}
public
void
setHeight
(
String
height
)
{
Height
=
height
;
}
public
Boolean
getReSize
()
{
return
ReSize
;
}
public
void
setReSize
(
Boolean
reSize
)
{
ReSize
=
reSize
;
}
public
Boolean
getOpenMax
()
{
return
OpenMax
;
}
public
void
setOpenMax
(
Boolean
openMax
)
{
OpenMax
=
openMax
;
}
public
Boolean
getFlash
()
{
return
Flash
;
}
public
void
setFlash
(
Boolean
flash
)
{
Flash
=
flash
;
}
public
String
getZL
()
{
return
ZL
;
}
public
void
setZL
(
String
zL
)
{
ZL
=
zL
;
}
public
String
getSort
()
{
return
Sort
;
}
public
void
setSort
(
String
sort
)
{
Sort
=
sort
;
}
public
String
getRemark
()
{
return
Remark
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
public
Boolean
getEnabled
()
{
return
Enabled
;
}
public
void
setEnabled
(
Boolean
enabled
)
{
Enabled
=
enabled
;
}
public
Long
getAppID
()
{
return
appID
;
}
public
void
setAppID
(
Long
appID
)
{
this
.
appID
=
appID
;
}
public
String
getAppIDs
()
{
return
appIDs
;
}
public
void
setAppIDs
(
String
appIDs
)
{
this
.
appIDs
=
appIDs
;
}
public
int
getPageSize
()
{
return
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
int
getPageNo
()
{
return
pageNo
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
String
getUBType
()
{
return
UBType
;
}
public
void
setUBType
(
String
uBType
)
{
UBType
=
uBType
;
}
public
String
getUBKeyId
()
{
return
UBKeyId
;
}
public
void
setUBKeyId
(
String
uBKeyId
)
{
UBKeyId
=
uBKeyId
;
}
}
src/main/java/com/jsh/model/vo/basic/AppShowModel.java
0 → 100644
View file @
e85498f6
package
com.jsh.model.vo.basic
;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
AppShowModel
implements
Serializable
{
/**
* 提示信息
*/
private
String
msgTip
=
""
;
public
String
getMsgTip
()
{
return
msgTip
;
}
public
void
setMsgTip
(
String
msgTip
)
{
this
.
msgTip
=
msgTip
;
}
}
src/main/java/com/jsh/model/vo/basic/AssetNameModel.java
0 → 100644
View file @
e85498f6
package
com.jsh.model.vo.basic
;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
AssetNameModel
implements
Serializable
{
private
AssetNameShowModel
showModel
=
new
AssetNameShowModel
();
/**======开始接受页面参数=================**/
/**
* 名称
*/
private
String
assetName
=
""
;
/**
* 是否易耗品
*/
private
Short
consumable
;
/**
* 描述信息
*/
private
String
description
=
""
;
/**
* 分类ID
*/
private
Long
categoryID
;
/**
* ID
*/
private
Long
assetNameID
=
0
l
;
/**
* IDs 批量操作使用
*/
private
String
assetNameIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
10
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
public
AssetNameShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setShowModel
(
AssetNameShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
String
getAssetName
()
{
return
assetName
;
}
public
void
setAssetName
(
String
assetName
)
{
this
.
assetName
=
assetName
;
}
public
String
getDescription
()
{
return
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
Long
getAssetNameID
()
{
return
assetNameID
;
}
public
void
setAssetNameID
(
Long
assetNameID
)
{
this
.
assetNameID
=
assetNameID
;
}
public
String
getAssetNameIDs
()
{
return
assetNameIDs
;
}
public
void
setAssetNameIDs
(
String
assetNameIDs
)
{
this
.
assetNameIDs
=
assetNameIDs
;
}
public
int
getPageSize
()
{
return
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
int
getPageNo
()
{
return
pageNo
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
Short
getConsumable
()
{
return
consumable
;
}
public
void
setConsumable
(
Short
consumable
)
{
this
.
consumable
=
consumable
;
}
public
Long
getCategoryID
()
{
return
categoryID
;
}
public
void
setCategoryID
(
Long
categoryID
)
{
this
.
categoryID
=
categoryID
;
}
}
src/main/java/com/jsh/model/vo/basic/AssetNameShowModel.java
0 → 100644
View file @
e85498f6
package
com.jsh.model.vo.basic
;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
AssetNameShowModel
implements
Serializable
{
/**
* 提示信息
*/
private
String
msgTip
=
""
;
public
String
getMsgTip
()
{
return
msgTip
;
}
public
void
setMsgTip
(
String
msgTip
)
{
this
.
msgTip
=
msgTip
;
}
}
Prev
1
2
3
4
5
6
7
8
9
10
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