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/vo/basic/SupplierModel.java
View file @
07259995
...
...
@@ -5,369 +5,360 @@ import java.io.InputStream;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
SupplierModel
implements
Serializable
{
private
SupplierShowModel
showModel
=
new
SupplierShowModel
();
/**======开始接受页面参数=================**/
/**
* 名称
*/
private
String
supplier
=
""
;
/**
* 类型
*/
private
String
type
=
""
;
/**
* 联系人
*/
private
String
contacts
=
""
;
/**
* 联系电话
*/
private
String
phonenum
=
""
;
/**
* 电子邮箱
*/
private
String
email
=
""
;
/**
public
class
SupplierModel
implements
Serializable
{
private
SupplierShowModel
showModel
=
new
SupplierShowModel
();
/**======开始接受页面参数=================**/
/**
* 名称
*/
private
String
supplier
=
""
;
/**
* 类型
*/
private
String
type
=
""
;
/**
* 联系人
*/
private
String
contacts
=
""
;
/**
* 联系电话
*/
private
String
phonenum
=
""
;
/**
* 电子邮箱
*/
private
String
email
=
""
;
/**
* 预付款
*/
*/
private
Double
AdvanceIn
;
/**
* 期初应收
*/
private
Double
BeginNeedGet
;
/**
* 期初应收
*/
private
Double
BeginNeedGet
;
/**
* 期初应付
*/
*/
private
Double
BeginNeedPay
;
/**
* 累计应收
*/
*/
private
Double
AllNeedGet
;
/**
* 累计应付
*/
*/
private
Double
AllNeedPay
;
/**
* 描述信息
*/
private
String
description
=
""
;
private
String
fax
=
""
;
private
String
telephone
=
""
;
private
String
address
=
""
;
private
String
taxNum
=
""
;
private
String
bankName
=
""
;
private
String
accountNumber
=
""
;
private
Double
taxRate
;
private
String
UBType
=
""
;
//UBType,UserBusiness类型
private
String
UBKeyId
=
""
;
//UBKeyId,UserBusiness关键id
/**
* 导入excel文件
*/
private
File
supplierFile
;
/**
* 描述信息
*/
private
String
description
=
""
;
private
String
fax
=
""
;
private
String
telephone
=
""
;
private
String
address
=
""
;
private
String
taxNum
=
""
;
private
String
bankName
=
""
;
private
String
accountNumber
=
""
;
private
Double
taxRate
;
private
String
UBType
=
""
;
//UBType,UserBusiness类型
private
String
UBKeyId
=
""
;
//UBKeyId,UserBusiness关键id
/**
* 导入excel文件
*/
private
File
supplierFile
;
/**
* 启用
*/
private
Boolean
enabled
=
false
;
/**
* 供应商ID
*/
private
Long
supplierID
=
0
l
;
/**
* 供应商IDs 批量操作使用
*/
private
String
supplierIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
10
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
/**
* 供应商ID
*/
private
Long
supplierID
=
0
l
;
/**
* 供应商IDs 批量操作使用
*/
private
String
supplierIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
10
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
private
String
browserType
=
""
;
//浏览器类型
private
String
fileName
=
""
;
//文件名称
private
InputStream
excelStream
;
//输入流,导出excel文件
public
SupplierShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setShowModel
(
SupplierShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
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
Double
getAdvanceIn
()
{
return
AdvanceIn
;
}
public
void
setAdvanceIn
(
Double
advanceIn
)
{
AdvanceIn
=
advanceIn
;
}
public
void
setBeginNeedGet
(
Double
beginNeedGet
)
{
BeginNeedGet
=
beginNeedGet
;
private
String
browserType
=
""
;
//浏览器类型
private
String
fileName
=
""
;
//文件名称
private
InputStream
excelStream
;
//输入流,导出excel文件
public
SupplierShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setShowModel
(
SupplierShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
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
Double
getBeginNeedGet
()
{
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
getAdvanceIn
()
{
return
AdvanceIn
;
}
public
void
setAdvanceIn
(
Double
advanceIn
)
{
AdvanceIn
=
advanceIn
;
}
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
String
getDescription
()
{
return
description
;
}
public
String
getDescription
()
{
return
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
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
Long
getSupplierID
()
{
return
supplierID
;
}
public
Long
getSupplierID
()
{
return
supplierID
;
}
public
void
setSupplierID
(
Long
supplierID
)
{
this
.
supplierID
=
supplierID
;
}
public
void
setSupplierID
(
Long
supplierID
)
{
this
.
supplierID
=
supplierID
;
}
public
String
getSupplierIDs
()
{
return
supplierIDs
;
}
public
String
getSupplierIDs
()
{
return
supplierIDs
;
}
public
void
setSupplierIDs
(
String
supplierIDs
)
{
this
.
supplierIDs
=
supplierIDs
;
}
public
void
setSupplierIDs
(
String
supplierIDs
)
{
this
.
supplierIDs
=
supplierIDs
;
}
public
int
getPageSize
()
{
return
pageSize
;
}
public
int
getPageSize
()
{
return
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
int
getPageNo
()
{
return
pageNo
;
}
public
int
getPageNo
()
{
return
pageNo
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
String
getFax
()
{
return
fax
;
}
public
String
getFax
()
{
return
fax
;
}
public
void
setFax
(
String
fax
)
{
this
.
fax
=
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
String
getUBType
()
{
return
UBType
;
}
public
String
getUBType
()
{
return
UBType
;
}
public
void
setUBType
(
String
UBType
)
{
this
.
UBType
=
UBType
;
}
public
void
setUBType
(
String
UBType
)
{
this
.
UBType
=
UBType
;
}
public
String
getUBKeyId
()
{
return
UBKeyId
;
}
public
String
getUBKeyId
()
{
return
UBKeyId
;
}
public
void
setUBKeyId
(
String
UBKeyId
)
{
this
.
UBKeyId
=
UBKeyId
;
}
public
void
setUBKeyId
(
String
UBKeyId
)
{
this
.
UBKeyId
=
UBKeyId
;
}
public
String
getBrowserType
()
{
return
browserType
;
}
public
String
getBrowserType
()
{
return
browserType
;
}
public
void
setBrowserType
(
String
browserType
)
{
this
.
browserType
=
browserType
;
}
public
void
setBrowserType
(
String
browserType
)
{
this
.
browserType
=
browserType
;
}
public
String
getFileName
()
{
return
fileName
;
}
public
String
getFileName
()
{
return
fileName
;
}
public
void
setFileName
(
String
fileName
)
{
this
.
fileName
=
fileName
;
}
public
void
setFileName
(
String
fileName
)
{
this
.
fileName
=
fileName
;
}
public
InputStream
getExcelStream
()
{
return
excelStream
;
}
public
InputStream
getExcelStream
()
{
return
excelStream
;
}
public
void
setExcelStream
(
InputStream
excelStream
)
{
this
.
excelStream
=
excelStream
;
}
public
void
setExcelStream
(
InputStream
excelStream
)
{
this
.
excelStream
=
excelStream
;
}
public
File
getSupplierFile
()
{
return
supplierFile
;
}
public
File
getSupplierFile
()
{
return
supplierFile
;
}
public
void
setSupplierFile
(
File
supplierFile
)
{
this
.
supplierFile
=
supplierFile
;
}
public
void
setSupplierFile
(
File
supplierFile
)
{
this
.
supplierFile
=
supplierFile
;
}
}
src/main/java/com/jsh/model/vo/basic/SupplierShowModel.java
View file @
07259995
...
...
@@ -6,37 +6,34 @@ import java.util.List;
import
java.util.Map
;
@SuppressWarnings
(
"serial"
)
public
class
SupplierShowModel
implements
Serializable
{
public
class
SupplierShowModel
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
()
{
return
map
;
}
@SuppressWarnings
(
"rawtypes"
)
public
Map
<
String
,
List
>
getMap
()
{
return
map
;
}
@SuppressWarnings
(
"rawtypes"
)
public
void
setMap
(
Map
<
String
,
List
>
map
)
{
this
.
map
=
map
;
}
@SuppressWarnings
(
"rawtypes"
)
public
void
setMap
(
Map
<
String
,
List
>
map
)
{
this
.
map
=
map
;
}
}
src/main/java/com/jsh/model/vo/basic/SystemConfigModel.java
View file @
07259995
...
...
@@ -3,75 +3,76 @@ package com.jsh.model.vo.basic;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
SystemConfigModel
implements
Serializable
{
public
class
SystemConfigModel
implements
Serializable
{
private
SystemConfigShowModel
showModel
=
new
SystemConfigShowModel
();
/**======开始接受页面参数=================**/
private
Long
id
=
0
l
;
/**
* ======开始接受页面参数=================
**/
private
Long
id
=
0
l
;
private
String
type
=
""
;
private
String
name
=
""
;
private
String
value
=
""
;
private
String
description
=
""
;
private
String
name
=
""
;
private
String
value
=
""
;
private
String
description
=
""
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
public
SystemConfigShowModel
getShowModel
()
{
return
showModel
;
}
public
SystemConfigShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setShowModel
(
SystemConfigShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
void
setShowModel
(
SystemConfigShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
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
getType
()
{
return
type
;
}
public
String
getType
()
{
return
type
;
}
public
void
setType
(
String
type
)
{
this
.
type
=
type
;
}
public
void
setType
(
String
type
)
{
this
.
type
=
type
;
}
public
String
getName
()
{
return
name
;
}
public
String
getName
()
{
return
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
String
getValue
()
{
return
value
;
}
public
String
getValue
()
{
return
value
;
}
public
void
setValue
(
String
value
)
{
this
.
value
=
value
;
}
public
void
setValue
(
String
value
)
{
this
.
value
=
value
;
}
public
String
getDescription
()
{
return
description
;
}
public
String
getDescription
()
{
return
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
}
src/main/java/com/jsh/model/vo/basic/SystemConfigShowModel.java
View file @
07259995
...
...
@@ -3,20 +3,17 @@ package com.jsh.model.vo.basic;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
SystemConfigShowModel
implements
Serializable
{
public
class
SystemConfigShowModel
implements
Serializable
{
/**
* 提示信息
*/
private
String
msgTip
=
""
;
public
String
getMsgTip
()
{
public
String
getMsgTip
()
{
return
msgTip
;
}
public
void
setMsgTip
(
String
msgTip
)
{
public
void
setMsgTip
(
String
msgTip
)
{
this
.
msgTip
=
msgTip
;
}
}
src/main/java/com/jsh/model/vo/basic/UnitModel.java
View file @
07259995
...
...
@@ -3,96 +3,95 @@ package com.jsh.model.vo.basic;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
UnitModel
implements
Serializable
{
private
DepotShowModel
showModel
=
new
DepotShowModel
();
/**======开始接受页面参数=================**/
/**
* 名称
*/
private
String
UName
=
""
;
/**
* ID
*/
private
Long
unitID
=
0
l
;
/**
* IDs 批量操作使用
*/
private
String
unitIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
10
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
public
DepotShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setShowModel
(
DepotShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
String
getUName
()
{
return
UName
;
}
public
void
setUName
(
String
UName
)
{
this
.
UName
=
UName
;
}
public
Long
getUnitID
()
{
return
unitID
;
}
public
void
setUnitID
(
Long
unitID
)
{
this
.
unitID
=
unitID
;
}
public
String
getUnitIDs
()
{
return
unitIDs
;
}
public
void
setUnitIDs
(
String
unitIDs
)
{
this
.
unitIDs
=
unitIDs
;
}
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
class
UnitModel
implements
Serializable
{
private
DepotShowModel
showModel
=
new
DepotShowModel
();
/**======开始接受页面参数=================**/
/**
* 名称
*/
private
String
UName
=
""
;
/**
* ID
*/
private
Long
unitID
=
0
l
;
/**
* IDs 批量操作使用
*/
private
String
unitIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
10
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
public
DepotShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setShowModel
(
DepotShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
String
getUName
()
{
return
UName
;
}
public
void
setUName
(
String
UName
)
{
this
.
UName
=
UName
;
}
public
Long
getUnitID
()
{
return
unitID
;
}
public
void
setUnitID
(
Long
unitID
)
{
this
.
unitID
=
unitID
;
}
public
String
getUnitIDs
()
{
return
unitIDs
;
}
public
void
setUnitIDs
(
String
unitIDs
)
{
this
.
unitIDs
=
unitIDs
;
}
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
;
}
}
src/main/java/com/jsh/model/vo/basic/UnitShowModel.java
View file @
07259995
...
...
@@ -6,38 +6,35 @@ import java.util.List;
import
java.util.Map
;
@SuppressWarnings
(
"serial"
)
public
class
UnitShowModel
implements
Serializable
{
public
class
UnitShowModel
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
()
{
return
map
;
}
@SuppressWarnings
(
"rawtypes"
)
public
void
setMap
(
Map
<
String
,
List
>
map
)
{
this
.
map
=
map
;
}
@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/UserBusinessModel.java
View file @
07259995
...
...
@@ -3,8 +3,7 @@ package com.jsh.model.vo.basic;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
UserBusinessModel
implements
Serializable
{
public
class
UserBusinessModel
implements
Serializable
{
private
UserBusinessShowModel
showModel
=
new
UserBusinessShowModel
();
/**======开始接受页面参数=================**/
...
...
@@ -12,121 +11,121 @@ public class UserBusinessModel implements Serializable
* 角色名称
*/
private
String
Type
=
""
;
/**
* 主ID
*/
private
String
KeyId
=
""
;
/**
* 值
*/
private
String
Value
=
""
;
private
String
BtnStr
=
""
;
private
String
BtnStr
=
""
;
/**
* 分类ID
*/
private
Long
userBusinessID
=
0
l
;
/**
* 分类IDs 批量操作使用
*/
private
String
userBusinessIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
10
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
public
UserBusinessShowModel
getShowModel
()
{
return
showModel
;
}
public
UserBusinessShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setShowModel
(
UserBusinessShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
void
setShowModel
(
UserBusinessShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
String
getType
()
{
return
Type
;
}
public
String
getType
()
{
return
Type
;
}
public
void
setType
(
String
type
)
{
Type
=
type
;
}
public
void
setType
(
String
type
)
{
Type
=
type
;
}
public
String
getKeyId
()
{
return
KeyId
;
}
public
String
getKeyId
()
{
return
KeyId
;
}
public
void
setKeyId
(
String
keyId
)
{
KeyId
=
keyId
;
}
public
void
setKeyId
(
String
keyId
)
{
KeyId
=
keyId
;
}
public
String
getValue
()
{
return
Value
;
}
public
String
getValue
()
{
return
Value
;
}
public
void
setValue
(
String
value
)
{
Value
=
value
;
}
public
void
setValue
(
String
value
)
{
Value
=
value
;
}
public
Long
getUserBusinessID
()
{
return
userBusinessID
;
}
public
Long
getUserBusinessID
()
{
return
userBusinessID
;
}
public
void
setUserBusinessID
(
Long
userBusinessID
)
{
this
.
userBusinessID
=
userBusinessID
;
}
public
void
setUserBusinessID
(
Long
userBusinessID
)
{
this
.
userBusinessID
=
userBusinessID
;
}
public
String
getUserBusinessIDs
()
{
return
userBusinessIDs
;
}
public
String
getUserBusinessIDs
()
{
return
userBusinessIDs
;
}
public
void
setUserBusinessIDs
(
String
userBusinessIDs
)
{
this
.
userBusinessIDs
=
userBusinessIDs
;
}
public
void
setUserBusinessIDs
(
String
userBusinessIDs
)
{
this
.
userBusinessIDs
=
userBusinessIDs
;
}
public
int
getPageSize
()
{
return
pageSize
;
}
public
int
getPageSize
()
{
return
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
int
getPageNo
()
{
return
pageNo
;
}
public
int
getPageNo
()
{
return
pageNo
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
String
getBtnStr
()
{
return
BtnStr
;
}
public
String
getBtnStr
()
{
return
BtnStr
;
}
public
void
setBtnStr
(
String
btnStr
)
{
BtnStr
=
btnStr
;
}
public
void
setBtnStr
(
String
btnStr
)
{
BtnStr
=
btnStr
;
}
}
src/main/java/com/jsh/model/vo/basic/UserBusinessShowModel.java
View file @
07259995
...
...
@@ -6,38 +6,35 @@ import java.util.List;
import
java.util.Map
;
@SuppressWarnings
(
"serial"
)
public
class
UserBusinessShowModel
implements
Serializable
{
public
class
UserBusinessShowModel
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
()
{
return
map
;
}
@SuppressWarnings
(
"rawtypes"
)
public
void
setMap
(
Map
<
String
,
List
>
map
)
{
this
.
map
=
map
;
}
@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/UserModel.java
View file @
07259995
...
...
@@ -3,253 +3,218 @@ package com.jsh.model.vo.basic;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
UserModel
implements
Serializable
{
private
UserShowModel
showModel
=
new
UserShowModel
();
/*+++++用户登录开始+++++++++++*/
private
String
username
=
""
;
private
String
password
=
""
;
/*+++++用户登录结束+++++++++++*/
/**
* ===============以下处理用户管理部分===============
*/
/**
* 用户登录名称
*/
private
String
loginame
;
/**
* 职位
*/
private
String
position
;
/**
* 部门
*/
private
String
department
;
/**
* 电子邮件
*/
private
String
email
;
/**
* 电话号码
*/
private
String
phonenum
;
/**
* 是否管理员 0 ==管理员 1==非管理员
*/
private
Short
ismanager
=
1
;
/**
* 用户描述
*/
private
String
description
;
/**
* 用户ID
*/
private
Long
userID
=
0
l
;
/**
* 用户IDs 批量操作使用
*/
private
String
userIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
10
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
/**
* 根据标识判断是校验登录名称还是用户名称 0==用户名称 1==登录名称
*/
private
int
checkFlag
=
0
;
private
String
orgpwd
=
""
;
public
String
getClientIp
()
{
return
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
String
getUsername
()
{
return
username
;
}
public
void
setUsername
(
String
username
)
{
this
.
username
=
username
;
}
public
String
getPassword
()
{
return
password
;
}
public
void
setPassword
(
String
password
)
{
this
.
password
=
password
;
}
public
UserShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setShowModel
(
UserShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
String
getLoginame
()
{
return
loginame
;
}
public
void
setLoginame
(
String
loginame
)
{
this
.
loginame
=
loginame
;
}
public
String
getPosition
()
{
return
position
;
}
public
void
setPosition
(
String
position
)
{
this
.
position
=
position
;
}
public
String
getDepartment
()
{
return
department
;
}
public
void
setDepartment
(
String
department
)
{
this
.
department
=
department
;
}
public
String
getEmail
()
{
return
email
;
}
public
void
setEmail
(
String
email
)
{
this
.
email
=
email
;
}
public
String
getPhonenum
()
{
return
phonenum
;
}
public
void
setPhonenum
(
String
phonenum
)
{
this
.
phonenum
=
phonenum
;
}
public
Short
getIsmanager
()
{
return
ismanager
;
}
public
void
setIsmanager
(
Short
ismanager
)
{
this
.
ismanager
=
ismanager
;
}
public
String
getDescription
()
{
return
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
Long
getUserID
()
{
return
userID
;
}
public
void
setUserID
(
Long
userID
)
{
this
.
userID
=
userID
;
}
public
String
getUserIDs
()
{
return
userIDs
;
}
public
void
setUserIDs
(
String
userIDs
)
{
this
.
userIDs
=
userIDs
;
}
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
int
getCheckFlag
()
{
return
checkFlag
;
}
public
void
setCheckFlag
(
int
checkFlag
)
{
this
.
checkFlag
=
checkFlag
;
}
public
String
getOrgpwd
()
{
return
orgpwd
;
}
public
void
setOrgpwd
(
String
orgpwd
)
{
this
.
orgpwd
=
orgpwd
;
}
public
class
UserModel
implements
Serializable
{
private
UserShowModel
showModel
=
new
UserShowModel
();
/*+++++用户登录开始+++++++++++*/
private
String
username
=
""
;
private
String
password
=
""
;
/*+++++用户登录结束+++++++++++*/
/**
* ===============以下处理用户管理部分===============
*/
/**
* 用户登录名称
*/
private
String
loginame
;
/**
* 职位
*/
private
String
position
;
/**
* 部门
*/
private
String
department
;
/**
* 电子邮件
*/
private
String
email
;
/**
* 电话号码
*/
private
String
phonenum
;
/**
* 是否管理员 0 ==管理员 1==非管理员
*/
private
Short
ismanager
=
1
;
/**
* 用户描述
*/
private
String
description
;
/**
* 用户ID
*/
private
Long
userID
=
0
l
;
/**
* 用户IDs 批量操作使用
*/
private
String
userIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
10
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
/**
* 根据标识判断是校验登录名称还是用户名称 0==用户名称 1==登录名称
*/
private
int
checkFlag
=
0
;
private
String
orgpwd
=
""
;
public
String
getClientIp
()
{
return
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
String
getUsername
()
{
return
username
;
}
public
void
setUsername
(
String
username
)
{
this
.
username
=
username
;
}
public
String
getPassword
()
{
return
password
;
}
public
void
setPassword
(
String
password
)
{
this
.
password
=
password
;
}
public
UserShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setShowModel
(
UserShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
String
getLoginame
()
{
return
loginame
;
}
public
void
setLoginame
(
String
loginame
)
{
this
.
loginame
=
loginame
;
}
public
String
getPosition
()
{
return
position
;
}
public
void
setPosition
(
String
position
)
{
this
.
position
=
position
;
}
public
String
getDepartment
()
{
return
department
;
}
public
void
setDepartment
(
String
department
)
{
this
.
department
=
department
;
}
public
String
getEmail
()
{
return
email
;
}
public
void
setEmail
(
String
email
)
{
this
.
email
=
email
;
}
public
String
getPhonenum
()
{
return
phonenum
;
}
public
void
setPhonenum
(
String
phonenum
)
{
this
.
phonenum
=
phonenum
;
}
public
Short
getIsmanager
()
{
return
ismanager
;
}
public
void
setIsmanager
(
Short
ismanager
)
{
this
.
ismanager
=
ismanager
;
}
public
String
getDescription
()
{
return
description
;
}
public
void
setDescription
(
String
description
)
{
this
.
description
=
description
;
}
public
Long
getUserID
()
{
return
userID
;
}
public
void
setUserID
(
Long
userID
)
{
this
.
userID
=
userID
;
}
public
String
getUserIDs
()
{
return
userIDs
;
}
public
void
setUserIDs
(
String
userIDs
)
{
this
.
userIDs
=
userIDs
;
}
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
int
getCheckFlag
()
{
return
checkFlag
;
}
public
void
setCheckFlag
(
int
checkFlag
)
{
this
.
checkFlag
=
checkFlag
;
}
public
String
getOrgpwd
()
{
return
orgpwd
;
}
public
void
setOrgpwd
(
String
orgpwd
)
{
this
.
orgpwd
=
orgpwd
;
}
}
src/main/java/com/jsh/model/vo/basic/UserShowModel.java
View file @
07259995
...
...
@@ -3,20 +3,17 @@ package com.jsh.model.vo.basic;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
UserShowModel
implements
Serializable
{
/**
* 提示信息
*/
private
String
msgTip
=
""
;
public
class
UserShowModel
implements
Serializable
{
/**
* 提示信息
*/
private
String
msgTip
=
""
;
public
String
getMsgTip
()
{
return
msgTip
;
}
public
String
getMsgTip
()
{
return
msgTip
;
}
public
void
setMsgTip
(
String
msgTip
)
{
this
.
msgTip
=
msgTip
;
}
public
void
setMsgTip
(
String
msgTip
)
{
this
.
msgTip
=
msgTip
;
}
}
src/main/java/com/jsh/model/vo/materials/AccountHeadModel.java
View file @
07259995
...
...
@@ -3,25 +3,26 @@ package com.jsh.model.vo.materials;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
AccountHeadModel
implements
Serializable
{
public
class
AccountHeadModel
implements
Serializable
{
private
AccountHeadShowModel
showModel
=
new
AccountHeadShowModel
();
/**======开始接受页面参数=================**/
/**
* ======开始接受页面参数=================
**/
private
String
Type
;
private
Long
OrganId
;
private
Long
HandsPersonId
;
private
Long
HandsPersonId
;
private
Double
ChangeAmount
;
private
Double
TotalPrice
;
private
Long
AccountId
;
private
String
BillNo
;
private
String
BillTime
;
private
String
BillTime
;
private
String
Remark
;
private
String
BeginTime
;
//查询开始时间
private
String
EndTime
;
//查询结束时间
private
String
MonthTime
;
//查询月份
private
String
supplierId
;
//单位Id,用于查询单位的收付款
private
String
supplierId
;
//单位Id,用于查询单位的收付款
private
String
supType
;
//单位类型,客户、供应商
/**
...
...
@@ -49,192 +50,157 @@ public class AccountHeadModel implements Serializable
*/
private
String
clientIp
=
""
;
public
void
setShowModel
(
AccountHeadShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
AccountHeadShowModel
getShowModel
()
{
public
AccountHeadShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setType
(
String
type
)
{
Type
=
type
;
public
void
setShowModel
(
AccountHeadShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
String
getType
()
{
public
String
getType
()
{
return
Type
;
}
public
void
setOrganId
(
Long
organId
)
{
OrganId
=
organId
;
public
void
setType
(
String
type
)
{
Type
=
type
;
}
public
Long
getOrganId
()
{
public
Long
getOrganId
()
{
return
OrganId
;
}
public
void
setHandsPersonId
(
Long
handsPersonId
)
{
HandsPersonId
=
handsPersonId
;
public
void
setOrganId
(
Long
organId
)
{
OrganId
=
organId
;
}
public
Long
getHandsPersonId
()
{
public
Long
getHandsPersonId
()
{
return
HandsPersonId
;
}
public
void
setChangeAmount
(
Double
changeAmount
)
{
ChangeAmount
=
changeAmount
;
public
void
setHandsPersonId
(
Long
handsPersonId
)
{
HandsPersonId
=
handsPersonId
;
}
public
Double
getChangeAmount
()
{
public
Double
getChangeAmount
()
{
return
ChangeAmount
;
}
public
void
set
TotalPrice
(
Double
totalPrice
)
{
TotalPrice
=
totalPrice
;
}
public
void
set
ChangeAmount
(
Double
changeAmount
)
{
ChangeAmount
=
changeAmount
;
}
public
Double
getTotalPrice
()
{
return
TotalPrice
;
}
public
void
setAccountId
(
Long
accountId
)
{
AccountId
=
accountId
;
return
TotalPrice
;
}
public
void
setTotalPrice
(
Double
totalPrice
)
{
TotalPrice
=
totalPrice
;
}
public
Long
getAccountId
()
{
public
Long
getAccountId
()
{
return
AccountId
;
}
public
void
setBillNo
(
String
billNo
)
{
BillNo
=
billNo
;
public
void
setAccountId
(
Long
accountId
)
{
AccountId
=
accountId
;
}
public
String
getBillNo
()
{
public
String
getBillNo
()
{
return
BillNo
;
}
public
void
setBillTime
(
String
billTime
)
{
BillTime
=
billTime
;
public
void
setBillNo
(
String
billNo
)
{
BillNo
=
billNo
;
}
public
String
getBillTime
()
{
public
String
getBillTime
()
{
return
BillTime
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
public
void
setBillTime
(
String
billTime
)
{
BillTime
=
billTime
;
}
public
String
getRemark
()
{
public
String
getRemark
()
{
return
Remark
;
}
public
void
setBeginTime
(
String
beginTime
)
{
BeginTime
=
beginTime
;
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
public
String
getBeginTime
()
{
public
String
getBeginTime
()
{
return
BeginTime
;
}
public
void
setEndTime
(
String
endTime
)
{
EndTime
=
endTime
;
public
void
setBeginTime
(
String
beginTime
)
{
BeginTime
=
beginTime
;
}
public
String
getEndTime
()
{
public
String
getEndTime
()
{
return
EndTime
;
}
public
void
setMonthTime
(
String
monthTime
)
{
MonthTime
=
monthTime
;
public
void
setEndTime
(
String
endTime
)
{
EndTime
=
endTime
;
}
public
String
getMonthTime
()
{
public
String
getMonthTime
()
{
return
MonthTime
;
}
public
void
setAccountHeadID
(
Long
accountHeadID
)
{
this
.
accountHeadID
=
accountHeadID
;
public
void
setMonthTime
(
String
monthTime
)
{
MonthTime
=
monthTime
;
}
public
Long
getAccountHeadID
()
{
public
Long
getAccountHeadID
()
{
return
accountHeadID
;
}
public
void
setAccountHeadIDs
(
String
accountHeadIDs
)
{
this
.
accountHeadIDs
=
accountHeadIDs
;
public
void
setAccountHeadID
(
Long
accountHeadID
)
{
this
.
accountHeadID
=
accountHeadID
;
}
public
String
getAccountHeadIDs
()
{
public
String
getAccountHeadIDs
()
{
return
accountHeadIDs
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
public
void
setAccountHeadIDs
(
String
accountHeadIDs
)
{
this
.
accountHeadIDs
=
accountHeadIDs
;
}
public
int
getPageSize
()
{
public
int
getPageSize
()
{
return
pageSize
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
int
getPageNo
()
{
public
int
getPageNo
()
{
return
pageNo
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
String
getClientIp
()
{
public
String
getClientIp
()
{
return
clientIp
;
}
public
String
getSupplierId
(
)
{
return
supplierId
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
void
setSupplierId
(
String
supplierId
)
{
this
.
supplierId
=
supplierId
;
}
public
String
getSupplierId
()
{
return
supplierId
;
}
public
void
setSupplierId
(
String
supplierId
)
{
this
.
supplierId
=
supplierId
;
}
public
String
getSupType
()
{
return
supType
;
...
...
src/main/java/com/jsh/model/vo/materials/AccountHeadShowModel.java
View file @
07259995
...
...
@@ -6,8 +6,7 @@ import java.util.List;
import
java.util.Map
;
@SuppressWarnings
(
"serial"
)
public
class
AccountHeadShowModel
implements
Serializable
{
public
class
AccountHeadShowModel
implements
Serializable
{
/**
* 提示信息
*/
...
...
@@ -17,15 +16,13 @@ public class AccountHeadShowModel 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
;
}
...
...
src/main/java/com/jsh/model/vo/materials/AccountItemModel.java
View file @
07259995
...
...
@@ -4,11 +4,12 @@ import java.io.InputStream;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
AccountItemModel
implements
Serializable
{
public
class
AccountItemModel
implements
Serializable
{
private
AccountItemShowModel
showModel
=
new
AccountItemShowModel
();
/**======开始接受页面参数=================**/
/**
* ======开始接受页面参数=================
**/
private
Long
HeaderId
;
private
Long
AccountId
;
private
Long
InOutItemId
;
...
...
@@ -58,106 +59,86 @@ public class AccountItemModel implements Serializable
*/
private
InputStream
excelStream
;
public
void
setShowModel
(
AccountItemShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
AccountItemShowModel
getShowModel
()
{
public
AccountItemShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setHeaderId
(
Long
headerId
)
{
HeaderId
=
headerId
;
public
void
setShowModel
(
AccountItemShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
Long
getHeaderId
()
{
public
Long
getHeaderId
()
{
return
HeaderId
;
}
public
void
setAccountId
(
Long
accountId
)
{
AccountId
=
accountId
;
public
void
setHeaderId
(
Long
headerId
)
{
HeaderId
=
headerId
;
}
public
Long
getAccountId
()
{
public
Long
getAccountId
()
{
return
AccountId
;
}
public
void
setInOutItemId
(
Long
inOutItemId
)
{
InOutItemId
=
inOutItemId
;
public
void
setAccountId
(
Long
accountId
)
{
AccountId
=
accountId
;
}
public
Long
getInOutItemId
()
{
public
Long
getInOutItemId
()
{
return
InOutItemId
;
}
public
void
setEachAmount
(
Double
eachAmount
)
{
EachAmount
=
eachAmount
;
public
void
setInOutItemId
(
Long
inOutItemId
)
{
InOutItemId
=
inOutItemId
;
}
public
Double
getEachAmount
()
{
public
Double
getEachAmount
()
{
return
EachAmount
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
public
void
setEachAmount
(
Double
eachAmount
)
{
EachAmount
=
eachAmount
;
}
public
String
getRemark
()
{
public
String
getRemark
()
{
return
Remark
;
}
public
void
setInserted
(
String
inserted
)
{
Inserted
=
inserted
;
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
public
String
getInserted
()
{
public
String
getInserted
()
{
return
Inserted
;
}
public
void
setDeleted
(
String
deleted
)
{
Deleted
=
deleted
;
public
void
setInserted
(
String
inserted
)
{
Inserted
=
inserted
;
}
public
String
getDeleted
()
{
public
String
getDeleted
()
{
return
Deleted
;
}
public
void
setUpdated
(
String
updated
)
{
Updated
=
updated
;
public
void
setDeleted
(
String
deleted
)
{
Deleted
=
deleted
;
}
public
String
getUpdated
()
{
public
String
getUpdated
()
{
return
Updated
;
}
public
void
setHeadIds
(
String
headIds
)
{
HeadIds
=
headIds
;
public
void
setUpdated
(
String
updated
)
{
Updated
=
updated
;
}
public
String
getHeadIds
()
{
public
String
getHeadIds
()
{
return
HeadIds
;
}
public
void
setHeadIds
(
String
headIds
)
{
HeadIds
=
headIds
;
}
public
String
getListType
()
{
return
ListType
;
}
...
...
@@ -166,95 +147,75 @@ public class AccountItemModel implements Serializable
ListType
=
listType
;
}
public
void
setMonthTime
(
String
monthTime
)
{
MonthTime
=
monthTime
;
}
public
String
getMonthTime
()
{
public
String
getMonthTime
()
{
return
MonthTime
;
}
public
void
setBrowserType
(
String
browserType
)
{
this
.
browserType
=
browserType
;
public
void
setMonthTime
(
String
monthTime
)
{
MonthTime
=
monthTime
;
}
public
String
getBrowserType
()
{
public
String
getBrowserType
()
{
return
browserType
;
}
public
void
setFileName
(
String
fileName
)
{
this
.
fileName
=
fileName
;
public
void
setBrowserType
(
String
browserType
)
{
this
.
browserType
=
browserType
;
}
public
String
getFileName
()
{
public
String
getFileName
()
{
return
fileName
;
}
public
void
setAccountItemID
(
Long
accountItemID
)
{
this
.
accountItemID
=
accountItemID
;
public
void
setFileName
(
String
fileName
)
{
this
.
fileName
=
fileName
;
}
public
Long
getAccountItemID
()
{
public
Long
getAccountItemID
()
{
return
accountItemID
;
}
public
void
setAccountItemIDs
(
String
accountItemIDs
)
{
this
.
accountItemIDs
=
accountItemIDs
;
public
void
setAccountItemID
(
Long
accountItemID
)
{
this
.
accountItemID
=
accountItemID
;
}
public
String
getAccountItemIDs
()
{
public
String
getAccountItemIDs
()
{
return
accountItemIDs
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
public
void
setAccountItemIDs
(
String
accountItemIDs
)
{
this
.
accountItemIDs
=
accountItemIDs
;
}
public
int
getPageSize
()
{
public
int
getPageSize
()
{
return
pageSize
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
int
getPageNo
()
{
public
int
getPageNo
()
{
return
pageNo
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
String
getClientIp
()
{
public
String
getClientIp
()
{
return
clientIp
;
}
public
void
setExcelStream
(
InputStream
excelStream
)
{
this
.
excelStream
=
excelStream
;
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
InputStream
getExcelStream
()
{
public
InputStream
getExcelStream
()
{
return
excelStream
;
}
public
void
setExcelStream
(
InputStream
excelStream
)
{
this
.
excelStream
=
excelStream
;
}
}
src/main/java/com/jsh/model/vo/materials/AccountItemShowModel.java
View file @
07259995
...
...
@@ -3,20 +3,17 @@ package com.jsh.model.vo.materials;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
AccountItemShowModel
implements
Serializable
{
public
class
AccountItemShowModel
implements
Serializable
{
/**
* 提示信息
*/
private
String
msgTip
=
""
;
public
String
getMsgTip
()
{
public
String
getMsgTip
()
{
return
msgTip
;
}
public
void
setMsgTip
(
String
msgTip
)
{
public
void
setMsgTip
(
String
msgTip
)
{
this
.
msgTip
=
msgTip
;
}
}
src/main/java/com/jsh/model/vo/materials/DepotHeadShowModel.java
View file @
07259995
...
...
@@ -6,37 +6,34 @@ import java.util.List;
import
java.util.Map
;
@SuppressWarnings
(
"serial"
)
public
class
DepotHeadShowModel
implements
Serializable
{
public
class
DepotHeadShowModel
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
()
{
return
map
;
}
@SuppressWarnings
(
"rawtypes"
)
public
Map
<
String
,
List
>
getMap
()
{
return
map
;
}
@SuppressWarnings
(
"rawtypes"
)
public
void
setMap
(
Map
<
String
,
List
>
map
)
{
this
.
map
=
map
;
}
@SuppressWarnings
(
"rawtypes"
)
public
void
setMap
(
Map
<
String
,
List
>
map
)
{
this
.
map
=
map
;
}
}
src/main/java/com/jsh/model/vo/materials/DepotItemModel.java
View file @
07259995
...
...
@@ -4,381 +4,382 @@ import java.io.InputStream;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
DepotItemModel
implements
Serializable
{
public
class
DepotItemModel
implements
Serializable
{
private
DepotItemShowModel
showModel
=
new
DepotItemShowModel
();
/**======开始接受页面参数=================**/
private
Long
HeaderId
;
private
Long
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
Long
DepotId
;
private
Long
AnotherDepotId
;
private
Double
TaxRate
;
private
Double
TaxMoney
;
private
Double
TaxLastMoney
;
private
String
OtherField1
;
private
String
OtherField2
;
private
String
OtherField3
;
private
String
OtherField4
;
private
String
OtherField5
;
private
String
MType
;
private
String
Inserted
=
""
;
//json插入记录
private
String
Deleted
=
""
;
//json删除记录
private
String
Updated
=
""
;
//json修改记录
private
String
HeadIds
=
""
;
//表头集合列表
private
String
MaterialIds
=
""
;
//材料列表
private
String
MonthTime
=
""
;
//月份
private
Integer
ProjectId
=
null
;
private
String
browserType
=
""
;
/**
* 文件名称
*/
private
String
fileName
=
""
;
/**
* ======开始接受页面参数=================
**/
private
Long
HeaderId
;
private
Long
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
Long
DepotId
;
private
Long
AnotherDepotId
;
private
Double
TaxRate
;
private
Double
TaxMoney
;
private
Double
TaxLastMoney
;
private
String
OtherField1
;
private
String
OtherField2
;
private
String
OtherField3
;
private
String
OtherField4
;
private
String
OtherField5
;
private
String
MType
;
private
String
Inserted
=
""
;
//json插入记录
private
String
Deleted
=
""
;
//json删除记录
private
String
Updated
=
""
;
//json修改记录
private
String
HeadIds
=
""
;
//表头集合列表
private
String
MaterialIds
=
""
;
//材料列表
private
String
MonthTime
=
""
;
//月份
private
Integer
ProjectId
=
null
;
private
String
browserType
=
""
;
/**
* 文件名称
*/
private
String
fileName
=
""
;
/**
* 分类ID
*/
private
Long
depotItemID
=
0
l
;
/**
* 分类IDs 批量操作使用
*/
private
String
depotItemIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
800
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
/**
* 输入流,导出excel文件
*/
private
InputStream
excelStream
;
private
InputStream
excelStream
;
private
String
mpList
=
""
;
//商品属性
private
String
mpList
=
""
;
//商品属性
public
DepotItemShowModel
getShowModel
()
{
return
showModel
;
}
public
DepotItemShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setShowModel
(
DepotItemShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
void
setShowModel
(
DepotItemShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
Long
getHeaderId
()
{
return
HeaderId
;
}
public
Long
getHeaderId
()
{
return
HeaderId
;
}
public
void
setHeaderId
(
Long
headerId
)
{
HeaderId
=
headerId
;
}
public
void
setHeaderId
(
Long
headerId
)
{
HeaderId
=
headerId
;
}
public
Long
getMaterialId
()
{
return
MaterialId
;
}
public
Long
getMaterialId
()
{
return
MaterialId
;
}
public
void
setMaterialId
(
Long
materialId
)
{
MaterialId
=
materialId
;
}
public
void
setMaterialId
(
Long
materialId
)
{
MaterialId
=
materialId
;
}
public
String
getMUnit
()
{
return
MUnit
;
}
public
String
getMUnit
()
{
return
MUnit
;
}
public
void
setMUnit
(
String
MUnit
)
{
this
.
MUnit
=
MUnit
;
}
public
void
setMUnit
(
String
MUnit
)
{
this
.
MUnit
=
MUnit
;
}
public
Double
getTaxUnitPrice
()
{
return
TaxUnitPrice
;
}
public
Double
getTaxUnitPrice
()
{
return
TaxUnitPrice
;
}
public
void
setTaxUnitPrice
(
Double
taxUnitPrice
)
{
TaxUnitPrice
=
taxUnitPrice
;
}
public
void
setTaxUnitPrice
(
Double
taxUnitPrice
)
{
TaxUnitPrice
=
taxUnitPrice
;
}
public
Double
getOperNumber
()
{
return
OperNumber
;
}
public
Double
getOperNumber
()
{
return
OperNumber
;
}
public
void
setOperNumber
(
Double
operNumber
)
{
OperNumber
=
operNumber
;
}
public
void
setOperNumber
(
Double
operNumber
)
{
OperNumber
=
operNumber
;
}
public
Double
getBasicNumber
()
{
return
BasicNumber
;
}
public
Double
getBasicNumber
()
{
return
BasicNumber
;
}
public
void
setBasicNumber
(
Double
basicNumber
)
{
BasicNumber
=
basicNumber
;
}
public
void
setBasicNumber
(
Double
basicNumber
)
{
BasicNumber
=
basicNumber
;
}
public
Double
getUnitPrice
()
{
return
UnitPrice
;
}
public
Double
getUnitPrice
()
{
return
UnitPrice
;
}
public
void
setUnitPrice
(
Double
unitPrice
)
{
UnitPrice
=
unitPrice
;
}
public
void
setUnitPrice
(
Double
unitPrice
)
{
UnitPrice
=
unitPrice
;
}
public
Double
getAllPrice
()
{
return
AllPrice
;
}
public
Double
getAllPrice
()
{
return
AllPrice
;
}
public
void
setAllPrice
(
Double
allPrice
)
{
AllPrice
=
allPrice
;
}
public
void
setAllPrice
(
Double
allPrice
)
{
AllPrice
=
allPrice
;
}
public
String
getRemark
()
{
return
Remark
;
}
public
String
getRemark
()
{
return
Remark
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
public
String
getImg
()
{
return
Img
;
}
public
String
getImg
()
{
return
Img
;
}
public
void
setImg
(
String
img
)
{
Img
=
img
;
}
public
void
setImg
(
String
img
)
{
Img
=
img
;
}
public
Long
getDepotItemID
()
{
return
depotItemID
;
}
public
Long
getDepotItemID
()
{
return
depotItemID
;
}
public
void
setDepotItemID
(
Long
depotItemID
)
{
this
.
depotItemID
=
depotItemID
;
}
public
void
setDepotItemID
(
Long
depotItemID
)
{
this
.
depotItemID
=
depotItemID
;
}
public
String
getDepotItemIDs
()
{
return
depotItemIDs
;
}
public
String
getDepotItemIDs
()
{
return
depotItemIDs
;
}
public
void
setDepotItemIDs
(
String
depotItemIDs
)
{
this
.
depotItemIDs
=
depotItemIDs
;
}
public
void
setDepotItemIDs
(
String
depotItemIDs
)
{
this
.
depotItemIDs
=
depotItemIDs
;
}
public
int
getPageSize
()
{
return
pageSize
;
}
public
int
getPageSize
()
{
return
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
int
getPageNo
()
{
return
pageNo
;
}
public
int
getPageNo
()
{
return
pageNo
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
String
getInserted
()
{
return
Inserted
;
}
public
String
getInserted
()
{
return
Inserted
;
}
public
void
setInserted
(
String
inserted
)
{
Inserted
=
inserted
;
}
public
void
setInserted
(
String
inserted
)
{
Inserted
=
inserted
;
}
public
String
getDeleted
()
{
return
Deleted
;
}
public
String
getDeleted
()
{
return
Deleted
;
}
public
void
setDeleted
(
String
deleted
)
{
Deleted
=
deleted
;
}
public
void
setDeleted
(
String
deleted
)
{
Deleted
=
deleted
;
}
public
String
getUpdated
()
{
return
Updated
;
}
public
String
getUpdated
()
{
return
Updated
;
}
public
void
setUpdated
(
String
updated
)
{
Updated
=
updated
;
}
public
void
setUpdated
(
String
updated
)
{
Updated
=
updated
;
}
public
String
getHeadIds
()
{
return
HeadIds
;
}
public
String
getHeadIds
()
{
return
HeadIds
;
}
public
void
setHeadIds
(
String
headIds
)
{
HeadIds
=
headIds
;
}
public
void
setHeadIds
(
String
headIds
)
{
HeadIds
=
headIds
;
}
public
String
getMonthTime
()
{
return
MonthTime
;
}
public
String
getMonthTime
()
{
return
MonthTime
;
}
public
void
setMonthTime
(
String
monthTime
)
{
MonthTime
=
monthTime
;
}
public
void
setMonthTime
(
String
monthTime
)
{
MonthTime
=
monthTime
;
}
public
Integer
getProjectId
()
{
return
ProjectId
;
}
public
Integer
getProjectId
()
{
return
ProjectId
;
}
public
void
setProjectId
(
Integer
projectId
)
{
ProjectId
=
projectId
;
}
public
void
setProjectId
(
Integer
projectId
)
{
ProjectId
=
projectId
;
}
public
String
getMaterialIds
()
{
return
MaterialIds
;
}
public
String
getMaterialIds
()
{
return
MaterialIds
;
}
public
void
setMaterialIds
(
String
materialIds
)
{
MaterialIds
=
materialIds
;
}
public
void
setMaterialIds
(
String
materialIds
)
{
MaterialIds
=
materialIds
;
}
public
String
getBrowserType
()
{
return
browserType
;
}
public
String
getBrowserType
()
{
return
browserType
;
}
public
void
setBrowserType
(
String
browserType
)
{
this
.
browserType
=
browserType
;
}
public
void
setBrowserType
(
String
browserType
)
{
this
.
browserType
=
browserType
;
}
public
String
getFileName
()
{
return
fileName
;
}
public
String
getFileName
()
{
return
fileName
;
}
public
void
setFileName
(
String
fileName
)
{
this
.
fileName
=
fileName
;
}
public
void
setFileName
(
String
fileName
)
{
this
.
fileName
=
fileName
;
}
public
InputStream
getExcelStream
()
{
return
excelStream
;
}
public
InputStream
getExcelStream
()
{
return
excelStream
;
}
public
void
setExcelStream
(
InputStream
excelStream
)
{
this
.
excelStream
=
excelStream
;
}
public
void
setExcelStream
(
InputStream
excelStream
)
{
this
.
excelStream
=
excelStream
;
}
public
Long
getDepotId
()
{
return
DepotId
;
}
public
Long
getDepotId
()
{
return
DepotId
;
}
public
void
setDepotId
(
Long
depotId
)
{
DepotId
=
depotId
;
}
public
void
setDepotId
(
Long
depotId
)
{
DepotId
=
depotId
;
}
public
Long
getAnotherDepotId
()
{
return
AnotherDepotId
;
}
public
Long
getAnotherDepotId
()
{
return
AnotherDepotId
;
}
public
void
setAnotherDepotId
(
Long
anotherDepotId
)
{
AnotherDepotId
=
anotherDepotId
;
}
public
void
setAnotherDepotId
(
Long
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
;
}
public
String
getMpList
()
{
return
mpList
;
}
public
String
getMpList
()
{
return
mpList
;
}
public
void
setMpList
(
String
mpList
)
{
this
.
mpList
=
mpList
;
}
public
void
setMpList
(
String
mpList
)
{
this
.
mpList
=
mpList
;
}
}
src/main/java/com/jsh/model/vo/materials/DepotItemShowModel.java
View file @
07259995
...
...
@@ -3,20 +3,17 @@ package com.jsh.model.vo.materials;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
DepotItemShowModel
implements
Serializable
{
public
class
DepotItemShowModel
implements
Serializable
{
/**
* 提示信息
*/
private
String
msgTip
=
""
;
public
String
getMsgTip
()
{
public
String
getMsgTip
()
{
return
msgTip
;
}
public
void
setMsgTip
(
String
msgTip
)
{
public
void
setMsgTip
(
String
msgTip
)
{
this
.
msgTip
=
msgTip
;
}
}
src/main/java/com/jsh/model/vo/materials/MaterialCategoryModel.java
View file @
07259995
...
...
@@ -3,8 +3,7 @@ package com.jsh.model.vo.materials;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
MaterialCategoryModel
implements
Serializable
{
public
class
MaterialCategoryModel
implements
Serializable
{
private
MaterialCategoryShowModel
showModel
=
new
MaterialCategoryShowModel
();
/**======开始接受页面参数=================**/
...
...
@@ -12,112 +11,112 @@ public class MaterialCategoryModel implements Serializable
* 名称
*/
private
String
Name
=
""
;
/**
* 等级
*/
private
Short
CategoryLevel
;
/**
* ParentId
*/
private
Long
ParentId
;
/**
* 分类ID
*/
private
Long
materialCategoryID
=
0
l
;
/**
* 分类IDs 批量操作使用
*/
private
String
materialCategoryIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
10
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
public
MaterialCategoryShowModel
getShowModel
()
{
return
showModel
;
}
public
MaterialCategoryShowModel
getShowModel
()
{
return
showModel
;
}
public
void
setShowModel
(
MaterialCategoryShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
void
setShowModel
(
MaterialCategoryShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
String
getName
(
)
{
return
Name
;
}
public
String
getN
ame
(
)
{
return
N
ame
;
}
public
void
setName
(
String
n
ame
)
{
Name
=
n
ame
;
}
public
void
setName
(
String
name
)
{
Name
=
name
;
}
public
Short
getCategoryLevel
(
)
{
return
CategoryLevel
;
}
public
Short
getC
ategoryLevel
(
)
{
return
C
ategoryLevel
;
}
public
void
setCategoryLevel
(
Short
c
ategoryLevel
)
{
CategoryLevel
=
c
ategoryLevel
;
}
public
void
setCategoryLevel
(
Short
categoryLevel
)
{
CategoryLevel
=
categoryLevel
;
}
public
Long
getParentId
(
)
{
return
ParentId
;
}
public
Long
g
etParentId
()
{
return
P
arentId
;
}
public
void
s
etParentId
(
Long
parentId
)
{
ParentId
=
p
arentId
;
}
public
void
setParentId
(
Long
parentId
)
{
ParentId
=
parentId
;
}
public
Long
getMaterialCategoryID
(
)
{
return
materialCategoryID
;
}
public
Long
g
etMaterialCategoryID
()
{
return
materialCategoryID
;
}
public
void
s
etMaterialCategoryID
(
Long
materialCategoryID
)
{
this
.
materialCategoryID
=
materialCategoryID
;
}
public
void
s
etMaterialCategoryID
(
Long
materialCategoryID
)
{
this
.
materialCategoryID
=
materialCategoryID
;
}
public
String
g
etMaterialCategoryID
s
()
{
return
materialCategoryID
s
;
}
public
String
getM
aterialCategoryIDs
(
)
{
return
materialCategoryIDs
;
}
public
void
setMaterialCategoryIDs
(
String
m
aterialCategoryIDs
)
{
this
.
materialCategoryIDs
=
materialCategoryIDs
;
}
public
void
setMaterialCategoryIDs
(
String
materialCategoryIDs
)
{
this
.
materialCategoryIDs
=
materialCategoryIDs
;
}
public
int
getPageSize
(
)
{
return
pageSize
;
}
public
int
g
etPageSize
()
{
return
pageSize
;
}
public
void
s
etPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
page
Size
;
}
public
int
getPageNo
(
)
{
return
page
No
;
}
public
int
g
etPageNo
()
{
return
pageNo
;
}
public
void
s
etPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
String
getClientIp
(
)
{
return
clientIp
;
}
public
String
getC
lientIp
(
)
{
return
clientIp
;
}
public
void
setClientIp
(
String
c
lientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
}
src/main/java/com/jsh/model/vo/materials/MaterialCategoryShowModel.java
View file @
07259995
...
...
@@ -6,38 +6,35 @@ import java.util.List;
import
java.util.Map
;
@SuppressWarnings
(
"serial"
)
public
class
MaterialCategoryShowModel
implements
Serializable
{
public
class
MaterialCategoryShowModel
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
()
{
return
map
;
}
@SuppressWarnings
(
"rawtypes"
)
public
void
setMap
(
Map
<
String
,
List
>
map
)
{
this
.
map
=
map
;
}
@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/materials/MaterialModel.java
View file @
07259995
...
...
@@ -5,8 +5,7 @@ import java.io.InputStream;
import
java.io.Serializable
;
@SuppressWarnings
(
"serial"
)
public
class
MaterialModel
implements
Serializable
{
public
class
MaterialModel
implements
Serializable
{
private
MaterialShowModel
showModel
=
new
MaterialShowModel
();
/**======开始接受页面参数=================**/
...
...
@@ -15,392 +14,384 @@ public class MaterialModel implements Serializable
*/
private
String
Name
=
""
;
private
String
Mfrs
=
""
;
//制造商
private
String
Mfrs
=
""
;
//制造商
private
Double
Packing
;
//包装(KG/包)
private
Double
Packing
;
//包装(KG/包)
private
Double
SafetyStock
;
//安全存量(KG)
private
Double
SafetyStock
;
//安全存量(KG)
/**
* 型号
*/
private
String
Model
=
""
;
/**
* 规格
*/
private
String
Standard
=
""
;
/**
* 规格
*/
private
String
Standard
=
""
;
/**
* 颜色
*/
private
String
Color
=
""
;
/**
* 单位
*/
private
String
Unit
=
""
;
/**
* 零售价
*/
private
Double
RetailPrice
;
/**
* 最低售价
*/
private
Double
LowPrice
;
/**
* 预设售价一
*/
private
Double
PresetPriceOne
;
/**
* 预设售价二
*/
*/
private
Double
PresetPriceTwo
;
/**
* 备注
*/
private
String
Remark
=
""
;
private
Long
UnitId
;
private
String
FirstOutUnit
;
private
String
FirstInUnit
;
private
String
PriceStrategy
;
private
Long
UnitId
;
private
String
FirstOutUnit
;
private
String
FirstInUnit
;
private
String
PriceStrategy
;
/**
* 导入excel文件
*/
private
File
materialFile
;
/**
* 导入excel文件
*/
private
File
materialFile
;
private
Boolean
Enabled
=
true
;
//是否启用
private
Boolean
Enabled
=
true
;
//是否启用
private
String
OtherField1
;
private
String
OtherField1
;
private
String
OtherField2
;
private
String
OtherField2
;
private
String
OtherField3
;
private
String
OtherField3
;
/**
* CategoryId
*/
private
Long
CategoryId
;
/**
* CategoryIds 用于in子查询
*/
private
String
CategoryIds
=
"1"
;
/**
* 分类ID
*/
private
Long
materialID
=
0
l
;
/**
* 分类IDs 批量操作使用
*/
private
String
materialIDs
=
""
;
/**
* 每页显示的个数
*/
private
int
pageSize
=
10
;
/**
* 当前页码
*/
private
int
pageNo
=
1
;
/**
* 用户IP,用户记录操作日志
*/
private
String
clientIp
=
""
;
private
String
browserType
=
""
;
//浏览器类型
private
String
fileName
=
""
;
//文件名称
private
InputStream
excelStream
;
//输入流,导出excel文件
private
String
mpList
=
""
;
//商品属性
private
String
browserType
=
""
;
//浏览器类型
private
String
fileName
=
""
;
//文件名称
private
InputStream
excelStream
;
//输入流,导出excel文件
public
MaterialShowModel
getShowModel
()
{
return
showModel
;
}
private
String
mpList
=
""
;
//商品属性
public
void
setShowModel
(
MaterialShowModel
s
howModel
)
{
this
.
showModel
=
showModel
;
}
public
MaterialShowModel
getS
howModel
(
)
{
return
showModel
;
}
public
String
getName
(
)
{
return
Name
;
}
public
void
setShowModel
(
MaterialShowModel
showModel
)
{
this
.
showModel
=
showModel
;
}
public
void
setName
(
String
n
ame
)
{
Name
=
n
ame
;
}
public
String
getN
ame
(
)
{
return
N
ame
;
}
public
String
getMfrs
(
)
{
return
Mfrs
;
}
public
void
setName
(
String
name
)
{
Name
=
name
;
}
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
String
getModel
(
)
{
return
Model
;
}
public
void
setSafetyStock
(
Double
safetyStock
)
{
SafetyStock
=
safetyStock
;
}
public
void
setModel
(
String
m
odel
)
{
Model
=
m
odel
;
}
public
String
getM
odel
(
)
{
return
M
odel
;
}
public
String
getStandard
(
)
{
return
Standard
;
}
public
void
setModel
(
String
model
)
{
Model
=
model
;
}
public
void
setStandard
(
String
s
tandard
)
{
Standard
=
s
tandard
;
}
public
String
getS
tandard
(
)
{
return
S
tandard
;
}
public
String
getColor
(
)
{
return
Color
;
}
public
void
setStandard
(
String
standard
)
{
Standard
=
standard
;
}
public
void
setColor
(
String
c
olor
)
{
Color
=
c
olor
;
}
public
String
getC
olor
(
)
{
return
C
olor
;
}
public
String
getUnit
(
)
{
return
Unit
;
}
public
void
setColor
(
String
color
)
{
Color
=
color
;
}
public
void
setUnit
(
String
u
nit
)
{
Unit
=
u
nit
;
}
public
String
getU
nit
(
)
{
return
U
nit
;
}
public
void
setRetailPrice
(
Double
retailPrice
)
{
RetailPrice
=
retailPrice
;
public
void
setUnit
(
String
unit
)
{
Unit
=
unit
;
}
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
(
)
{
return
Remark
;
}
public
void
setPresetPriceTwo
(
Double
presetPriceTwo
)
{
PresetPriceTwo
=
presetPriceTwo
;
}
public
void
setRemark
(
String
r
emark
)
{
Remark
=
r
emark
;
}
public
String
getR
emark
(
)
{
return
R
emark
;
}
public
Long
getCategoryId
(
)
{
return
CategoryId
;
}
public
void
setRemark
(
String
remark
)
{
Remark
=
remark
;
}
public
void
s
etCategoryId
(
Long
categoryId
)
{
CategoryId
=
c
ategoryId
;
}
public
Long
g
etCategoryId
()
{
return
C
ategoryId
;
}
public
Long
g
et
M
ate
rialID
(
)
{
return
materialID
;
}
public
void
s
et
C
ate
goryId
(
Long
categoryId
)
{
CategoryId
=
categoryId
;
}
public
void
s
etMaterialID
(
Long
materialID
)
{
this
.
materialID
=
materialID
;
}
public
Long
g
etMaterialID
()
{
return
materialID
;
}
public
String
getM
aterialID
s
(
)
{
return
materialID
s
;
}
public
void
setMaterialID
(
Long
m
aterialID
)
{
this
.
materialID
=
materialID
;
}
public
void
setMaterialIDs
(
String
m
aterialIDs
)
{
this
.
materialIDs
=
materialIDs
;
}
public
String
getM
aterialIDs
(
)
{
return
materialIDs
;
}
public
int
getPageSize
()
{
return
pageSize
;
}
public
void
setMaterialIDs
(
String
materialIDs
)
{
this
.
materialIDs
=
materialIDs
;
}
public
int
getPageSize
()
{
return
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
void
setPageSize
(
int
pageSize
)
{
this
.
pageSize
=
pageSize
;
}
public
int
getPageNo
()
{
return
pageNo
;
}
public
int
getPageNo
()
{
return
pageNo
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
void
setPageNo
(
int
pageNo
)
{
this
.
pageNo
=
pageNo
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
public
String
getClientIp
()
{
return
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
void
setClientIp
(
String
clientIp
)
{
this
.
clientIp
=
clientIp
;
}
public
String
getCategoryIds
()
{
return
CategoryIds
;
}
public
String
getCategoryIds
()
{
return
CategoryIds
;
}
public
void
setCategoryIds
(
String
categoryIds
)
{
CategoryIds
=
categoryIds
;
}
public
void
setCategoryIds
(
String
categoryIds
)
{
CategoryIds
=
categoryIds
;
}
public
Long
getUnitId
()
{
return
UnitId
;
}
public
Long
getUnitId
()
{
return
UnitId
;
}
public
void
setUnitId
(
Long
unitId
)
{
UnitId
=
unitId
;
}
public
void
setUnitId
(
Long
unitId
)
{
UnitId
=
unitId
;
}
public
String
getFirstOutUnit
()
{
return
FirstOutUnit
;
}
public
String
getFirstOutUnit
()
{
return
FirstOutUnit
;
}
public
void
setFirstOutUnit
(
String
firstOutUnit
)
{
FirstOutUnit
=
firstOutUnit
;
}
public
void
setFirstOutUnit
(
String
firstOutUnit
)
{
FirstOutUnit
=
firstOutUnit
;
}
public
String
getFirstInUnit
()
{
return
FirstInUnit
;
}
public
String
getFirstInUnit
()
{
return
FirstInUnit
;
}
public
void
setFirstInUnit
(
String
firstInUnit
)
{
FirstInUnit
=
firstInUnit
;
}
public
void
setFirstInUnit
(
String
firstInUnit
)
{
FirstInUnit
=
firstInUnit
;
}
public
String
getPriceStrategy
()
{
return
PriceStrategy
;
}
public
String
getPriceStrategy
()
{
return
PriceStrategy
;
}
public
void
setPriceStrategy
(
String
priceStrategy
)
{
PriceStrategy
=
priceStrategy
;
}
public
void
setPriceStrategy
(
String
priceStrategy
)
{
PriceStrategy
=
priceStrategy
;
}
public
Boolean
getEnabled
()
{
return
Enabled
;
}
public
Boolean
getEnabled
()
{
return
Enabled
;
}
public
void
setEnabled
(
Boolean
enabled
)
{
Enabled
=
enabled
;
}
public
void
setEnabled
(
Boolean
enabled
)
{
Enabled
=
enabled
;
}
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
getBrowserType
()
{
return
browserType
;
}
public
String
getBrowserType
()
{
return
browserType
;
}
public
void
setBrowserType
(
String
browserType
)
{
this
.
browserType
=
browserType
;
}
public
void
setBrowserType
(
String
browserType
)
{
this
.
browserType
=
browserType
;
}
public
String
getFileName
()
{
return
fileName
;
}
public
String
getFileName
()
{
return
fileName
;
}
public
void
setFileName
(
String
fileName
)
{
this
.
fileName
=
fileName
;
}
public
void
setFileName
(
String
fileName
)
{
this
.
fileName
=
fileName
;
}
public
InputStream
getExcelStream
()
{
return
excelStream
;
}
public
InputStream
getExcelStream
()
{
return
excelStream
;
}
public
void
setExcelStream
(
InputStream
excelStream
)
{
this
.
excelStream
=
excelStream
;
}
public
void
setExcelStream
(
InputStream
excelStream
)
{
this
.
excelStream
=
excelStream
;
}
public
File
getMaterialFile
()
{
return
materialFile
;
}
public
File
getMaterialFile
()
{
return
materialFile
;
}
public
void
setMaterialFile
(
File
materialFile
)
{
this
.
materialFile
=
materialFile
;
}
public
void
setMaterialFile
(
File
materialFile
)
{
this
.
materialFile
=
materialFile
;
}
public
String
getMpList
()
{
return
mpList
;
}
public
String
getMpList
()
{
return
mpList
;
}
public
void
setMpList
(
String
mpList
)
{
this
.
mpList
=
mpList
;
}
public
void
setMpList
(
String
mpList
)
{
this
.
mpList
=
mpList
;
}
}
Prev
1
…
3
4
5
6
7
8
9
10
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