Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
jsherp-java-test
Commits
82cad570
Commit
82cad570
authored
Nov 22, 2023
by
gu-jinli1118
Browse files
Test
parents
Changes
220
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
1474 additions
and
0 deletions
+1474
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/SupplierMapperEx.java
...java/com/jsh/erp/datasource/mappers/SupplierMapperEx.java
+38
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/SystemConfigMapper.java
...va/com/jsh/erp/datasource/mappers/SystemConfigMapper.java
+31
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/SystemConfigMapperEx.java
.../com/jsh/erp/datasource/mappers/SystemConfigMapperEx.java
+22
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/TenantMapper.java
...ain/java/com/jsh/erp/datasource/mappers/TenantMapper.java
+31
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/TenantMapperEx.java
...n/java/com/jsh/erp/datasource/mappers/TenantMapperEx.java
+23
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/UnitMapper.java
.../main/java/com/jsh/erp/datasource/mappers/UnitMapper.java
+31
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/UnitMapperEx.java
...ain/java/com/jsh/erp/datasource/mappers/UnitMapperEx.java
+26
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/UserBusinessMapper.java
...va/com/jsh/erp/datasource/mappers/UserBusinessMapper.java
+31
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/UserBusinessMapperEx.java
.../com/jsh/erp/datasource/mappers/UserBusinessMapperEx.java
+15
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/UserMapper.java
.../main/java/com/jsh/erp/datasource/mappers/UserMapper.java
+31
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/UserMapperEx.java
...ain/java/com/jsh/erp/datasource/mappers/UserMapperEx.java
+36
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/AccountItemVo4List.java
...in/java/com/jsh/erp/datasource/vo/AccountItemVo4List.java
+37
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/AccountVo4InOutList.java
...n/java/com/jsh/erp/datasource/vo/AccountVo4InOutList.java
+117
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/AccountVo4List.java
...c/main/java/com/jsh/erp/datasource/vo/AccountVo4List.java
+17
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/DepotHeadVo4InDetail.java
.../java/com/jsh/erp/datasource/vo/DepotHeadVo4InDetail.java
+189
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/DepotHeadVo4InOutMCount.java
...va/com/jsh/erp/datasource/vo/DepotHeadVo4InOutMCount.java
+108
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/DepotHeadVo4List.java
...main/java/com/jsh/erp/datasource/vo/DepotHeadVo4List.java
+228
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/DepotHeadVo4StatementAccount.java
...m/jsh/erp/datasource/vo/DepotHeadVo4StatementAccount.java
+186
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/DepotItemStockWarningCount.java
...com/jsh/erp/datasource/vo/DepotItemStockWarningCount.java
+197
-0
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/DepotItemVo4Stock.java
...ain/java/com/jsh/erp/datasource/vo/DepotItemVo4Stock.java
+80
-0
No files found.
Too many changes to show.
To preserve performance only
220 of 220+
files are displayed.
Plain diff
Email patch
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/SupplierMapperEx.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.mappers
;
import
com.jsh.erp.datasource.entities.Supplier
;
import
com.jsh.erp.datasource.entities.SupplierExample
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.Date
;
import
java.util.List
;
public
interface
SupplierMapperEx
{
List
<
Supplier
>
selectByConditionSupplier
(
@Param
(
"supplier"
)
String
supplier
,
@Param
(
"type"
)
String
type
,
@Param
(
"phonenum"
)
String
phonenum
,
@Param
(
"telephone"
)
String
telephone
,
@Param
(
"offset"
)
Integer
offset
,
@Param
(
"rows"
)
Integer
rows
);
Long
countsBySupplier
(
@Param
(
"supplier"
)
String
supplier
,
@Param
(
"type"
)
String
type
,
@Param
(
"phonenum"
)
String
phonenum
,
@Param
(
"telephone"
)
String
telephone
);
List
<
Supplier
>
findByAll
(
@Param
(
"supplier"
)
String
supplier
,
@Param
(
"type"
)
String
type
,
@Param
(
"phonenum"
)
String
phonenum
,
@Param
(
"telephone"
)
String
telephone
);
int
batchDeleteSupplierByIds
(
@Param
(
"updateTime"
)
Date
updateTime
,
@Param
(
"updater"
)
Long
updater
,
@Param
(
"ids"
)
String
ids
[]);
Supplier
getSupplierByNameAndType
(
@Param
(
"supplier"
)
String
supplier
,
@Param
(
"type"
)
String
type
);
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/SystemConfigMapper.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.mappers
;
import
com.jsh.erp.datasource.entities.SystemConfig
;
import
com.jsh.erp.datasource.entities.SystemConfigExample
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Param
;
public
interface
SystemConfigMapper
{
long
countByExample
(
SystemConfigExample
example
);
int
deleteByExample
(
SystemConfigExample
example
);
int
deleteByPrimaryKey
(
Long
id
);
int
insert
(
SystemConfig
record
);
int
insertSelective
(
SystemConfig
record
);
List
<
SystemConfig
>
selectByExample
(
SystemConfigExample
example
);
SystemConfig
selectByPrimaryKey
(
Long
id
);
int
updateByExampleSelective
(
@Param
(
"record"
)
SystemConfig
record
,
@Param
(
"example"
)
SystemConfigExample
example
);
int
updateByExample
(
@Param
(
"record"
)
SystemConfig
record
,
@Param
(
"example"
)
SystemConfigExample
example
);
int
updateByPrimaryKeySelective
(
SystemConfig
record
);
int
updateByPrimaryKey
(
SystemConfig
record
);
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/SystemConfigMapperEx.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.mappers
;
import
com.jsh.erp.datasource.entities.SystemConfig
;
import
com.jsh.erp.datasource.entities.SystemConfigExample
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.Date
;
import
java.util.List
;
public
interface
SystemConfigMapperEx
{
List
<
SystemConfig
>
selectByConditionSystemConfig
(
@Param
(
"companyName"
)
String
companyName
,
@Param
(
"offset"
)
Integer
offset
,
@Param
(
"rows"
)
Integer
rows
);
Long
countsBySystemConfig
(
@Param
(
"companyName"
)
String
companyName
);
int
batchDeleteSystemConfigByIds
(
@Param
(
"updateTime"
)
Date
updateTime
,
@Param
(
"updater"
)
Long
updater
,
@Param
(
"ids"
)
String
ids
[]);
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/TenantMapper.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.mappers
;
import
com.jsh.erp.datasource.entities.Tenant
;
import
com.jsh.erp.datasource.entities.TenantExample
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Param
;
public
interface
TenantMapper
{
long
countByExample
(
TenantExample
example
);
int
deleteByExample
(
TenantExample
example
);
int
deleteByPrimaryKey
(
Long
id
);
int
insert
(
Tenant
record
);
int
insertSelective
(
Tenant
record
);
List
<
Tenant
>
selectByExample
(
TenantExample
example
);
Tenant
selectByPrimaryKey
(
Long
id
);
int
updateByExampleSelective
(
@Param
(
"record"
)
Tenant
record
,
@Param
(
"example"
)
TenantExample
example
);
int
updateByExample
(
@Param
(
"record"
)
Tenant
record
,
@Param
(
"example"
)
TenantExample
example
);
int
updateByPrimaryKeySelective
(
Tenant
record
);
int
updateByPrimaryKey
(
Tenant
record
);
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/TenantMapperEx.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.mappers
;
import
com.jsh.erp.datasource.entities.Tenant
;
import
com.jsh.erp.datasource.entities.TenantEx
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.List
;
public
interface
TenantMapperEx
{
List
<
TenantEx
>
selectByConditionTenant
(
@Param
(
"loginName"
)
String
loginName
,
@Param
(
"type"
)
String
type
,
@Param
(
"enabled"
)
String
enabled
,
@Param
(
"offset"
)
Integer
offset
,
@Param
(
"rows"
)
Integer
rows
);
Long
countsByTenant
(
@Param
(
"loginName"
)
String
loginName
,
@Param
(
"type"
)
String
type
,
@Param
(
"enabled"
)
String
enabled
);
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/UnitMapper.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.mappers
;
import
com.jsh.erp.datasource.entities.Unit
;
import
com.jsh.erp.datasource.entities.UnitExample
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Param
;
public
interface
UnitMapper
{
long
countByExample
(
UnitExample
example
);
int
deleteByExample
(
UnitExample
example
);
int
deleteByPrimaryKey
(
Long
id
);
int
insert
(
Unit
record
);
int
insertSelective
(
Unit
record
);
List
<
Unit
>
selectByExample
(
UnitExample
example
);
Unit
selectByPrimaryKey
(
Long
id
);
int
updateByExampleSelective
(
@Param
(
"record"
)
Unit
record
,
@Param
(
"example"
)
UnitExample
example
);
int
updateByExample
(
@Param
(
"record"
)
Unit
record
,
@Param
(
"example"
)
UnitExample
example
);
int
updateByPrimaryKeySelective
(
Unit
record
);
int
updateByPrimaryKey
(
Unit
record
);
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/UnitMapperEx.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.mappers
;
import
com.jsh.erp.datasource.entities.Unit
;
import
com.jsh.erp.datasource.entities.UnitExample
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.Date
;
import
java.util.List
;
public
interface
UnitMapperEx
{
List
<
Unit
>
selectByConditionUnit
(
@Param
(
"name"
)
String
name
,
@Param
(
"offset"
)
Integer
offset
,
@Param
(
"rows"
)
Integer
rows
);
Long
countsByUnit
(
@Param
(
"name"
)
String
name
);
int
batchDeleteUnitByIds
(
@Param
(
"updateTime"
)
Date
updateTime
,
@Param
(
"updater"
)
Long
updater
,
@Param
(
"ids"
)
String
ids
[]);
void
updateRatioTwoById
(
@Param
(
"id"
)
Long
id
);
void
updateRatioThreeById
(
@Param
(
"id"
)
Long
id
);
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/UserBusinessMapper.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.mappers
;
import
com.jsh.erp.datasource.entities.UserBusiness
;
import
com.jsh.erp.datasource.entities.UserBusinessExample
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Param
;
public
interface
UserBusinessMapper
{
long
countByExample
(
UserBusinessExample
example
);
int
deleteByExample
(
UserBusinessExample
example
);
int
deleteByPrimaryKey
(
Long
id
);
int
insert
(
UserBusiness
record
);
int
insertSelective
(
UserBusiness
record
);
List
<
UserBusiness
>
selectByExample
(
UserBusinessExample
example
);
UserBusiness
selectByPrimaryKey
(
Long
id
);
int
updateByExampleSelective
(
@Param
(
"record"
)
UserBusiness
record
,
@Param
(
"example"
)
UserBusinessExample
example
);
int
updateByExample
(
@Param
(
"record"
)
UserBusiness
record
,
@Param
(
"example"
)
UserBusinessExample
example
);
int
updateByPrimaryKeySelective
(
UserBusiness
record
);
int
updateByPrimaryKey
(
UserBusiness
record
);
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/UserBusinessMapperEx.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.mappers
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.Date
;
/**
* Description
*
* @Author: qiankunpingtai
* @Date: 2019/3/29 15:09
*/
public
interface
UserBusinessMapperEx
{
int
batchDeleteUserBusinessByIds
(
@Param
(
"updateTime"
)
Date
updateTime
,
@Param
(
"updater"
)
Long
updater
,
@Param
(
"ids"
)
String
ids
[]);
}
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/UserMapper.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.mappers
;
import
com.jsh.erp.datasource.entities.User
;
import
com.jsh.erp.datasource.entities.UserExample
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Param
;
public
interface
UserMapper
{
long
countByExample
(
UserExample
example
);
int
deleteByExample
(
UserExample
example
);
int
deleteByPrimaryKey
(
Long
id
);
int
insert
(
User
record
);
int
insertSelective
(
User
record
);
List
<
User
>
selectByExample
(
UserExample
example
);
User
selectByPrimaryKey
(
Long
id
);
int
updateByExampleSelective
(
@Param
(
"record"
)
User
record
,
@Param
(
"example"
)
UserExample
example
);
int
updateByExample
(
@Param
(
"record"
)
User
record
,
@Param
(
"example"
)
UserExample
example
);
int
updateByPrimaryKeySelective
(
User
record
);
int
updateByPrimaryKey
(
User
record
);
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/mappers/UserMapperEx.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.mappers
;
import
com.jsh.erp.datasource.entities.User
;
import
com.jsh.erp.datasource.entities.UserEx
;
import
com.jsh.erp.datasource.entities.UserExample
;
import
com.jsh.erp.datasource.vo.TreeNode
;
import
com.jsh.erp.datasource.vo.TreeNodeEx
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.Map
;
public
interface
UserMapperEx
{
List
<
UserEx
>
selectByConditionUser
(
@Param
(
"userName"
)
String
userName
,
@Param
(
"loginName"
)
String
loginName
,
@Param
(
"offset"
)
Integer
offset
,
@Param
(
"rows"
)
Integer
rows
);
Long
countsByUser
(
@Param
(
"userName"
)
String
userName
,
@Param
(
"loginName"
)
String
loginName
);
List
<
User
>
getUserListByUserNameOrLoginName
(
@Param
(
"userName"
)
String
userName
,
@Param
(
"loginName"
)
String
loginName
);
int
batDeleteOrUpdateUser
(
@Param
(
"ids"
)
String
ids
[],
@Param
(
"status"
)
byte
status
);
List
<
TreeNodeEx
>
getNodeTree
();
List
<
TreeNodeEx
>
getNextNodeTree
(
Map
<
String
,
Object
>
parameterMap
);
void
disableUserByLimit
(
@Param
(
"tenantId"
)
Long
tenantId
);
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/AccountItemVo4List.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.vo
;
import
com.jsh.erp.datasource.entities.AccountItem
;
public
class
AccountItemVo4List
extends
AccountItem
{
private
String
accountName
;
private
String
inOutItemName
;
private
String
billNumber
;
public
String
getAccountName
()
{
return
accountName
;
}
public
void
setAccountName
(
String
accountName
)
{
this
.
accountName
=
accountName
;
}
public
String
getInOutItemName
()
{
return
inOutItemName
;
}
public
void
setInOutItemName
(
String
inOutItemName
)
{
this
.
inOutItemName
=
inOutItemName
;
}
public
String
getBillNumber
()
{
return
billNumber
;
}
public
void
setBillNumber
(
String
billNumber
)
{
this
.
billNumber
=
billNumber
;
}
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/AccountVo4InOutList.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.vo
;
import
java.math.BigDecimal
;
public
class
AccountVo4InOutList
{
private
Long
accountId
;
private
String
number
;
private
String
type
;
private
String
fromType
;
private
String
supplierName
;
private
BigDecimal
changeAmount
;
private
BigDecimal
balance
;
private
String
operTime
;
private
String
aList
;
private
String
amList
;
private
Long
tenantId
;
public
Long
getAccountId
()
{
return
accountId
;
}
public
void
setAccountId
(
Long
accountId
)
{
this
.
accountId
=
accountId
;
}
public
String
getNumber
()
{
return
number
;
}
public
void
setNumber
(
String
number
)
{
this
.
number
=
number
;
}
public
String
getType
()
{
return
type
;
}
public
void
setType
(
String
type
)
{
this
.
type
=
type
;
}
public
String
getFromType
()
{
return
fromType
;
}
public
void
setFromType
(
String
fromType
)
{
this
.
fromType
=
fromType
;
}
public
String
getSupplierName
()
{
return
supplierName
;
}
public
void
setSupplierName
(
String
supplierName
)
{
this
.
supplierName
=
supplierName
;
}
public
BigDecimal
getChangeAmount
()
{
return
changeAmount
;
}
public
void
setChangeAmount
(
BigDecimal
changeAmount
)
{
this
.
changeAmount
=
changeAmount
;
}
public
BigDecimal
getBalance
()
{
return
balance
;
}
public
void
setBalance
(
BigDecimal
balance
)
{
this
.
balance
=
balance
;
}
public
String
getOperTime
()
{
return
operTime
;
}
public
void
setOperTime
(
String
operTime
)
{
this
.
operTime
=
operTime
;
}
public
String
getaList
()
{
return
aList
;
}
public
void
setaList
(
String
aList
)
{
this
.
aList
=
aList
;
}
public
String
getAmList
()
{
return
amList
;
}
public
void
setAmList
(
String
amList
)
{
this
.
amList
=
amList
;
}
public
Long
getTenantId
()
{
return
tenantId
;
}
public
void
setTenantId
(
Long
tenantId
)
{
this
.
tenantId
=
tenantId
;
}
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/AccountVo4List.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.vo
;
import
com.jsh.erp.datasource.entities.Account
;
public
class
AccountVo4List
extends
Account
{
private
String
thisMonthAmount
;
public
String
getThisMonthAmount
()
{
return
thisMonthAmount
;
}
public
void
setThisMonthAmount
(
String
thisMonthAmount
)
{
this
.
thisMonthAmount
=
thisMonthAmount
;
}
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/DepotHeadVo4InDetail.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.vo
;
import
java.math.BigDecimal
;
import
java.util.Date
;
public
class
DepotHeadVo4InDetail
{
private
String
Number
;
private
String
barCode
;
private
String
MName
;
private
String
Model
;
private
String
standard
;
private
BigDecimal
UnitPrice
;
private
String
mUnit
;
private
String
newRemark
;
private
BigDecimal
OperNumber
;
private
BigDecimal
AllPrice
;
private
BigDecimal
taxRate
;
private
BigDecimal
taxMoney
;
private
BigDecimal
taxLastMoney
;
private
String
SName
;
private
String
DName
;
private
String
OperTime
;
private
String
NewType
;
private
Long
tenantId
;
public
String
getNumber
()
{
return
Number
;
}
public
void
setNumber
(
String
number
)
{
Number
=
number
;
}
public
String
getBarCode
()
{
return
barCode
;
}
public
void
setBarCode
(
String
barCode
)
{
this
.
barCode
=
barCode
;
}
public
String
getMName
()
{
return
MName
;
}
public
void
setMName
(
String
MName
)
{
this
.
MName
=
MName
;
}
public
String
getModel
()
{
return
Model
;
}
public
void
setModel
(
String
model
)
{
Model
=
model
;
}
public
String
getStandard
()
{
return
standard
;
}
public
void
setStandard
(
String
standard
)
{
this
.
standard
=
standard
;
}
public
BigDecimal
getUnitPrice
()
{
return
UnitPrice
;
}
public
void
setUnitPrice
(
BigDecimal
unitPrice
)
{
UnitPrice
=
unitPrice
;
}
public
String
getmUnit
()
{
return
mUnit
;
}
public
void
setmUnit
(
String
mUnit
)
{
this
.
mUnit
=
mUnit
;
}
public
String
getNewRemark
()
{
return
newRemark
;
}
public
void
setNewRemark
(
String
newRemark
)
{
this
.
newRemark
=
newRemark
;
}
public
BigDecimal
getOperNumber
()
{
return
OperNumber
;
}
public
void
setOperNumber
(
BigDecimal
operNumber
)
{
OperNumber
=
operNumber
;
}
public
BigDecimal
getAllPrice
()
{
return
AllPrice
;
}
public
void
setAllPrice
(
BigDecimal
allPrice
)
{
AllPrice
=
allPrice
;
}
public
BigDecimal
getTaxRate
()
{
return
taxRate
;
}
public
void
setTaxRate
(
BigDecimal
taxRate
)
{
this
.
taxRate
=
taxRate
;
}
public
BigDecimal
getTaxMoney
()
{
return
taxMoney
;
}
public
void
setTaxMoney
(
BigDecimal
taxMoney
)
{
this
.
taxMoney
=
taxMoney
;
}
public
BigDecimal
getTaxLastMoney
()
{
return
taxLastMoney
;
}
public
void
setTaxLastMoney
(
BigDecimal
taxLastMoney
)
{
this
.
taxLastMoney
=
taxLastMoney
;
}
public
String
getSName
()
{
return
SName
;
}
public
void
setSName
(
String
SName
)
{
this
.
SName
=
SName
;
}
public
String
getDName
()
{
return
DName
;
}
public
void
setDName
(
String
DName
)
{
this
.
DName
=
DName
;
}
public
String
getOperTime
()
{
return
OperTime
;
}
public
void
setOperTime
(
String
operTime
)
{
OperTime
=
operTime
;
}
public
String
getNewType
()
{
return
NewType
;
}
public
void
setNewType
(
String
newType
)
{
NewType
=
newType
;
}
public
Long
getTenantId
()
{
return
tenantId
;
}
public
void
setTenantId
(
Long
tenantId
)
{
this
.
tenantId
=
tenantId
;
}
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/DepotHeadVo4InOutMCount.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.vo
;
import
java.math.BigDecimal
;
public
class
DepotHeadVo4InOutMCount
{
private
Long
MaterialId
;
private
String
barCode
;
private
String
mName
;
private
String
Model
;
private
String
standard
;
private
String
categoryName
;
private
String
materialUnit
;
private
BigDecimal
numSum
;
private
BigDecimal
priceSum
;
private
Long
tenantId
;
public
Long
getMaterialId
()
{
return
MaterialId
;
}
public
void
setMaterialId
(
Long
materialId
)
{
MaterialId
=
materialId
;
}
public
String
getBarCode
()
{
return
barCode
;
}
public
void
setBarCode
(
String
barCode
)
{
this
.
barCode
=
barCode
;
}
public
String
getmName
()
{
return
mName
;
}
public
void
setmName
(
String
mName
)
{
this
.
mName
=
mName
;
}
public
String
getModel
()
{
return
Model
;
}
public
void
setModel
(
String
model
)
{
Model
=
model
;
}
public
String
getStandard
()
{
return
standard
;
}
public
void
setStandard
(
String
standard
)
{
this
.
standard
=
standard
;
}
public
String
getCategoryName
()
{
return
categoryName
;
}
public
void
setCategoryName
(
String
categoryName
)
{
this
.
categoryName
=
categoryName
;
}
public
String
getMaterialUnit
()
{
return
materialUnit
;
}
public
void
setMaterialUnit
(
String
materialUnit
)
{
this
.
materialUnit
=
materialUnit
;
}
public
BigDecimal
getNumSum
()
{
return
numSum
;
}
public
void
setNumSum
(
BigDecimal
numSum
)
{
this
.
numSum
=
numSum
;
}
public
BigDecimal
getPriceSum
()
{
return
priceSum
;
}
public
void
setPriceSum
(
BigDecimal
priceSum
)
{
this
.
priceSum
=
priceSum
;
}
public
Long
getTenantId
()
{
return
tenantId
;
}
public
void
setTenantId
(
Long
tenantId
)
{
this
.
tenantId
=
tenantId
;
}
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/DepotHeadVo4List.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.vo
;
import
com.jsh.erp.datasource.entities.DepotHead
;
import
java.math.BigDecimal
;
import
java.util.Date
;
public
class
DepotHeadVo4List
extends
DepotHead
{
private
String
projectName
;
private
String
organName
;
private
String
userName
;
private
String
accountName
;
private
String
allocationProjectName
;
private
String
materialsList
;
private
String
salesManStr
;
private
String
operTimeStr
;
private
BigDecimal
finishDebt
;
private
String
depotHeadType
;
private
String
creatorName
;
private
String
contacts
;
private
String
telephone
;
private
String
address
;
private
BigDecimal
finishDeposit
;
private
BigDecimal
needDebt
;
private
BigDecimal
debt
;
private
BigDecimal
materialCount
;
/**
* 是否有付款单或收款单
*/
private
Boolean
hasFinancialFlag
;
/**
* 是否有退款单
*/
private
Boolean
hasBackFlag
;
/**
* 实际欠款
*/
private
BigDecimal
realNeedDebt
;
public
String
getProjectName
()
{
return
projectName
;
}
public
void
setProjectName
(
String
projectName
)
{
this
.
projectName
=
projectName
;
}
public
String
getOrganName
()
{
return
organName
;
}
public
void
setOrganName
(
String
organName
)
{
this
.
organName
=
organName
;
}
public
String
getUserName
()
{
return
userName
;
}
public
void
setUserName
(
String
userName
)
{
this
.
userName
=
userName
;
}
public
String
getAccountName
()
{
return
accountName
;
}
public
void
setAccountName
(
String
accountName
)
{
this
.
accountName
=
accountName
;
}
public
String
getAllocationProjectName
()
{
return
allocationProjectName
;
}
public
void
setAllocationProjectName
(
String
allocationProjectName
)
{
this
.
allocationProjectName
=
allocationProjectName
;
}
public
String
getMaterialsList
()
{
return
materialsList
;
}
public
void
setMaterialsList
(
String
materialsList
)
{
this
.
materialsList
=
materialsList
;
}
public
String
getSalesManStr
()
{
return
salesManStr
;
}
public
void
setSalesManStr
(
String
salesManStr
)
{
this
.
salesManStr
=
salesManStr
;
}
public
String
getOperTimeStr
()
{
return
operTimeStr
;
}
public
void
setOperTimeStr
(
String
operTimeStr
)
{
this
.
operTimeStr
=
operTimeStr
;
}
public
BigDecimal
getFinishDebt
()
{
return
finishDebt
;
}
public
void
setFinishDebt
(
BigDecimal
finishDebt
)
{
this
.
finishDebt
=
finishDebt
;
}
public
String
getDepotHeadType
()
{
return
depotHeadType
;
}
public
void
setDepotHeadType
(
String
depotHeadType
)
{
this
.
depotHeadType
=
depotHeadType
;
}
public
String
getCreatorName
()
{
return
creatorName
;
}
public
void
setCreatorName
(
String
creatorName
)
{
this
.
creatorName
=
creatorName
;
}
public
String
getContacts
()
{
return
contacts
;
}
public
void
setContacts
(
String
contacts
)
{
this
.
contacts
=
contacts
;
}
public
String
getTelephone
()
{
return
telephone
;
}
public
void
setTelephone
(
String
telephone
)
{
this
.
telephone
=
telephone
;
}
public
String
getAddress
()
{
return
address
;
}
public
void
setAddress
(
String
address
)
{
this
.
address
=
address
;
}
public
BigDecimal
getFinishDeposit
()
{
return
finishDeposit
;
}
public
void
setFinishDeposit
(
BigDecimal
finishDeposit
)
{
this
.
finishDeposit
=
finishDeposit
;
}
public
BigDecimal
getNeedDebt
()
{
return
needDebt
;
}
public
void
setNeedDebt
(
BigDecimal
needDebt
)
{
this
.
needDebt
=
needDebt
;
}
public
BigDecimal
getDebt
()
{
return
debt
;
}
public
void
setDebt
(
BigDecimal
debt
)
{
this
.
debt
=
debt
;
}
public
BigDecimal
getMaterialCount
()
{
return
materialCount
;
}
public
void
setMaterialCount
(
BigDecimal
materialCount
)
{
this
.
materialCount
=
materialCount
;
}
public
Boolean
getHasFinancialFlag
()
{
return
hasFinancialFlag
;
}
public
void
setHasFinancialFlag
(
Boolean
hasFinancialFlag
)
{
this
.
hasFinancialFlag
=
hasFinancialFlag
;
}
public
Boolean
getHasBackFlag
()
{
return
hasBackFlag
;
}
public
void
setHasBackFlag
(
Boolean
hasBackFlag
)
{
this
.
hasBackFlag
=
hasBackFlag
;
}
public
BigDecimal
getRealNeedDebt
()
{
return
realNeedDebt
;
}
public
void
setRealNeedDebt
(
BigDecimal
realNeedDebt
)
{
this
.
realNeedDebt
=
realNeedDebt
;
}
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/DepotHeadVo4StatementAccount.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.vo
;
import
java.math.BigDecimal
;
public
class
DepotHeadVo4StatementAccount
{
private
Long
id
;
private
String
supplier
;
private
String
contacts
;
private
String
telephone
;
private
String
phoneNum
;
private
String
email
;
/**
* 起始期初金额
*/
private
BigDecimal
beginNeed
;
/**
* 上期欠款金额
*/
private
BigDecimal
preDebtMoney
;
/**
* 上期退货的欠款金额
*/
private
BigDecimal
preReturnDebtMoney
;
/**
* 上期收付款
*/
private
BigDecimal
preBackMoney
;
/**
* 期初应收
*/
private
BigDecimal
preNeed
;
/**
* 本期欠款
*/
private
BigDecimal
debtMoney
;
/**
* 本期退货的欠款金额
*/
private
BigDecimal
returnDebtMoney
;
/**
* 本期收款
*/
private
BigDecimal
backMoney
;
/**
* 期末应收
*/
private
BigDecimal
allNeed
;
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
getContacts
()
{
return
contacts
;
}
public
void
setContacts
(
String
contacts
)
{
this
.
contacts
=
contacts
;
}
public
String
getTelephone
()
{
return
telephone
;
}
public
void
setTelephone
(
String
telephone
)
{
this
.
telephone
=
telephone
;
}
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
BigDecimal
getBeginNeed
()
{
return
beginNeed
;
}
public
void
setBeginNeed
(
BigDecimal
beginNeed
)
{
this
.
beginNeed
=
beginNeed
;
}
public
BigDecimal
getPreDebtMoney
()
{
return
preDebtMoney
;
}
public
void
setPreDebtMoney
(
BigDecimal
preDebtMoney
)
{
this
.
preDebtMoney
=
preDebtMoney
;
}
public
BigDecimal
getPreReturnDebtMoney
()
{
return
preReturnDebtMoney
;
}
public
void
setPreReturnDebtMoney
(
BigDecimal
preReturnDebtMoney
)
{
this
.
preReturnDebtMoney
=
preReturnDebtMoney
;
}
public
BigDecimal
getPreBackMoney
()
{
return
preBackMoney
;
}
public
void
setPreBackMoney
(
BigDecimal
preBackMoney
)
{
this
.
preBackMoney
=
preBackMoney
;
}
public
BigDecimal
getPreNeed
()
{
return
preNeed
;
}
public
void
setPreNeed
(
BigDecimal
preNeed
)
{
this
.
preNeed
=
preNeed
;
}
public
BigDecimal
getDebtMoney
()
{
return
debtMoney
;
}
public
void
setDebtMoney
(
BigDecimal
debtMoney
)
{
this
.
debtMoney
=
debtMoney
;
}
public
BigDecimal
getReturnDebtMoney
()
{
return
returnDebtMoney
;
}
public
void
setReturnDebtMoney
(
BigDecimal
returnDebtMoney
)
{
this
.
returnDebtMoney
=
returnDebtMoney
;
}
public
BigDecimal
getBackMoney
()
{
return
backMoney
;
}
public
void
setBackMoney
(
BigDecimal
backMoney
)
{
this
.
backMoney
=
backMoney
;
}
public
BigDecimal
getAllNeed
()
{
return
allNeed
;
}
public
void
setAllNeed
(
BigDecimal
allNeed
)
{
this
.
allNeed
=
allNeed
;
}
}
\ No newline at end of file
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/DepotItemStockWarningCount.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.vo
;
import
java.math.BigDecimal
;
public
class
DepotItemStockWarningCount
{
private
Long
MId
;
private
String
barCode
;
private
String
MName
;
private
String
MModel
;
private
String
MaterialUnit
;
private
String
MColor
;
private
String
MStandard
;
private
String
MMfrs
;
private
String
unitName
;
private
String
MaterialOther
;
private
String
MOtherField1
;
private
String
MOtherField2
;
private
String
MOtherField3
;
private
String
depotName
;
private
BigDecimal
currentNumber
;
private
BigDecimal
lowSafeStock
;
private
BigDecimal
highSafeStock
;
private
BigDecimal
lowCritical
;
private
BigDecimal
highCritical
;
public
Long
getMId
()
{
return
MId
;
}
public
void
setMId
(
Long
MId
)
{
this
.
MId
=
MId
;
}
public
String
getBarCode
()
{
return
barCode
;
}
public
void
setBarCode
(
String
barCode
)
{
this
.
barCode
=
barCode
;
}
public
String
getMName
()
{
return
MName
;
}
public
void
setMName
(
String
MName
)
{
this
.
MName
=
MName
;
}
public
String
getMModel
()
{
return
MModel
;
}
public
void
setMModel
(
String
MModel
)
{
this
.
MModel
=
MModel
;
}
public
String
getMaterialUnit
()
{
return
MaterialUnit
;
}
public
void
setMaterialUnit
(
String
materialUnit
)
{
MaterialUnit
=
materialUnit
;
}
public
String
getMColor
()
{
return
MColor
;
}
public
void
setMColor
(
String
MColor
)
{
this
.
MColor
=
MColor
;
}
public
String
getMStandard
()
{
return
MStandard
;
}
public
void
setMStandard
(
String
MStandard
)
{
this
.
MStandard
=
MStandard
;
}
public
String
getMMfrs
()
{
return
MMfrs
;
}
public
void
setMMfrs
(
String
MMfrs
)
{
this
.
MMfrs
=
MMfrs
;
}
public
String
getUnitName
()
{
return
unitName
;
}
public
void
setUnitName
(
String
unitName
)
{
this
.
unitName
=
unitName
;
}
public
String
getMaterialOther
()
{
return
MaterialOther
;
}
public
void
setMaterialOther
(
String
materialOther
)
{
MaterialOther
=
materialOther
;
}
public
String
getMOtherField1
()
{
return
MOtherField1
;
}
public
void
setMOtherField1
(
String
MOtherField1
)
{
this
.
MOtherField1
=
MOtherField1
;
}
public
String
getMOtherField2
()
{
return
MOtherField2
;
}
public
void
setMOtherField2
(
String
MOtherField2
)
{
this
.
MOtherField2
=
MOtherField2
;
}
public
String
getMOtherField3
()
{
return
MOtherField3
;
}
public
void
setMOtherField3
(
String
MOtherField3
)
{
this
.
MOtherField3
=
MOtherField3
;
}
public
String
getDepotName
()
{
return
depotName
;
}
public
void
setDepotName
(
String
depotName
)
{
this
.
depotName
=
depotName
;
}
public
BigDecimal
getCurrentNumber
()
{
return
currentNumber
;
}
public
void
setCurrentNumber
(
BigDecimal
currentNumber
)
{
this
.
currentNumber
=
currentNumber
;
}
public
BigDecimal
getLowSafeStock
()
{
return
lowSafeStock
;
}
public
void
setLowSafeStock
(
BigDecimal
lowSafeStock
)
{
this
.
lowSafeStock
=
lowSafeStock
;
}
public
BigDecimal
getHighSafeStock
()
{
return
highSafeStock
;
}
public
void
setHighSafeStock
(
BigDecimal
highSafeStock
)
{
this
.
highSafeStock
=
highSafeStock
;
}
public
BigDecimal
getLowCritical
()
{
return
lowCritical
;
}
public
void
setLowCritical
(
BigDecimal
lowCritical
)
{
this
.
lowCritical
=
lowCritical
;
}
public
BigDecimal
getHighCritical
()
{
return
highCritical
;
}
public
void
setHighCritical
(
BigDecimal
highCritical
)
{
this
.
highCritical
=
highCritical
;
}
}
JSH_ERP/jshERP-boot/src/main/java/com/jsh/erp/datasource/vo/DepotItemVo4Stock.java
0 → 100644
View file @
82cad570
package
com.jsh.erp.datasource.vo
;
import
java.math.BigDecimal
;
public
class
DepotItemVo4Stock
{
private
BigDecimal
inTotal
;
private
BigDecimal
outTotal
;
private
BigDecimal
transfInTotal
;
private
BigDecimal
transfOutTotal
;
private
BigDecimal
assemInTotal
;
private
BigDecimal
assemOutTotal
;
private
BigDecimal
disAssemInTotal
;
private
BigDecimal
disAssemOutTotal
;
public
BigDecimal
getInTotal
()
{
return
inTotal
;
}
public
void
setInTotal
(
BigDecimal
inTotal
)
{
this
.
inTotal
=
inTotal
;
}
public
BigDecimal
getOutTotal
()
{
return
outTotal
;
}
public
void
setOutTotal
(
BigDecimal
outTotal
)
{
this
.
outTotal
=
outTotal
;
}
public
BigDecimal
getTransfInTotal
()
{
return
transfInTotal
;
}
public
void
setTransfInTotal
(
BigDecimal
transfInTotal
)
{
this
.
transfInTotal
=
transfInTotal
;
}
public
BigDecimal
getTransfOutTotal
()
{
return
transfOutTotal
;
}
public
void
setTransfOutTotal
(
BigDecimal
transfOutTotal
)
{
this
.
transfOutTotal
=
transfOutTotal
;
}
public
BigDecimal
getAssemInTotal
()
{
return
assemInTotal
;
}
public
void
setAssemInTotal
(
BigDecimal
assemInTotal
)
{
this
.
assemInTotal
=
assemInTotal
;
}
public
BigDecimal
getAssemOutTotal
()
{
return
assemOutTotal
;
}
public
void
setAssemOutTotal
(
BigDecimal
assemOutTotal
)
{
this
.
assemOutTotal
=
assemOutTotal
;
}
public
BigDecimal
getDisAssemInTotal
()
{
return
disAssemInTotal
;
}
public
void
setDisAssemInTotal
(
BigDecimal
disAssemInTotal
)
{
this
.
disAssemInTotal
=
disAssemInTotal
;
}
public
BigDecimal
getDisAssemOutTotal
()
{
return
disAssemOutTotal
;
}
public
void
setDisAssemOutTotal
(
BigDecimal
disAssemOutTotal
)
{
this
.
disAssemOutTotal
=
disAssemOutTotal
;
}
}
Prev
1
…
6
7
8
9
10
11
Next
Write
Preview
Markdown
is supported
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