Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
hp-smart
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
platform
hp-smart
Commits
ec63c647
Commit
ec63c647
authored
Oct 09, 2024
by
liuyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2024-10-09 销售业绩产品类型调整
parent
abc0775a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
HPYX006.java
src/main/java/com/baosight/hpjx/hp/yx/domain/HPYX006.java
+4
-4
No files found.
src/main/java/com/baosight/hpjx/hp/yx/domain/HPYX006.java
View file @
ec63c647
...
...
@@ -79,7 +79,7 @@ public class HPYX006 extends DaoEPBase {
private
Integer
deleteFlag
=
0
;
/* 是否删除0.否1.是*/
private
String
productCode
=
" "
;
/* 产品编码*/
private
String
productName
=
" "
;
/* 产品名称*/
private
Integer
productType
;
/* 产品类型*/
private
String
productType
=
" "
;
/* 产品类型*/
private
String
productPecu
=
" "
;
/* 产品特性*/
private
String
productGood
=
" "
;
/* 产品卖点*/
private
BigDecimal
productPrice
=
new
BigDecimal
(
0.00
);
/* 产品定价*/
...
...
@@ -377,7 +377,7 @@ public class HPYX006 extends DaoEPBase {
* get the productType - 产品类型.
* @return the productType
*/
public
Integer
getProductType
()
{
public
String
getProductType
()
{
return
this
.
productType
;
}
...
...
@@ -386,7 +386,7 @@ public class HPYX006 extends DaoEPBase {
*
* @param productType - 产品类型
*/
public
void
setProductType
(
Integer
productType
)
{
public
void
setProductType
(
String
productType
)
{
this
.
productType
=
productType
;
}
/**
...
...
@@ -489,7 +489,7 @@ public class HPYX006 extends DaoEPBase {
setDeleteFlag
(
NumberUtils
.
toInteger
(
StringUtils
.
toString
(
map
.
get
(
FIELD_DELETE_FLAG
)),
deleteFlag
));
setProductCode
(
StringUtils
.
defaultIfEmpty
(
StringUtils
.
toString
(
map
.
get
(
FIELD_PRODUCT_CODE
)),
productCode
));
setProductName
(
StringUtils
.
defaultIfEmpty
(
StringUtils
.
toString
(
map
.
get
(
FIELD_PRODUCT_NAME
)),
productName
));
setProductType
(
NumberUtils
.
toInteger
(
StringUtils
.
toString
(
map
.
get
(
FIELD_PRODUCT_TYPE
)),
productType
));
setProductType
(
StringUtils
.
defaultIfEmpty
(
StringUtils
.
toString
(
map
.
get
(
FIELD_PRODUCT_TYPE
)),
productType
));
setProductPecu
(
StringUtils
.
defaultIfEmpty
(
StringUtils
.
toString
(
map
.
get
(
FIELD_PRODUCT_PECU
)),
productPecu
));
setProductGood
(
StringUtils
.
defaultIfEmpty
(
StringUtils
.
toString
(
map
.
get
(
FIELD_PRODUCT_GOOD
)),
productGood
));
setProductPrice
(
NumberUtils
.
toBigDecimal
(
StringUtils
.
toString
(
map
.
get
(
FIELD_PRODUCT_PRICE
)),
productPrice
));
...
...
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