Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dm_project
Project
Project
Details
Activity
Releases
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
姚本章
dm_project
Commits
e2ed01d9
Commit
e2ed01d9
authored
Dec 01, 2020
by
sml
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dto与request提交
parent
7051b506
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
396 additions
and
0 deletions
+396
-0
DataGoodsDto.java
...manage/moduls/controller/goods/bean/dto/DataGoodsDto.java
+7
-0
DataGoodsRequest.java
...oduls/controller/goods/bean/request/DataGoodsRequest.java
+389
-0
No files found.
jz-dm-manage/src/main/java/com/jz/manage/moduls/controller/goods/bean/dto/DataGoodsDto.java
0 → 100644
View file @
e2ed01d9
package
com
.
jz
.
manage
.
moduls
.
controller
.
goods
.
bean
.
dto
;
import
com.jz.common.entity.DataGoods
;
public
class
DataGoodsDto
extends
DataGoods
{
}
jz-dm-manage/src/main/java/com/jz/manage/moduls/controller/goods/bean/request/DataGoodsRequest.java
0 → 100644
View file @
e2ed01d9
package
com
.
jz
.
manage
.
moduls
.
controller
.
goods
.
bean
.
request
;
import
java.math.BigDecimal
;
import
java.util.Date
;
import
com.jz.common.bean.BasePageBean
;
/**数据商品参数请求封装
* @author ybz
*
*/
public
class
DataGoodsRequest
extends
BasePageBean
{
/**
* 数据商品id
*/
private
Long
dataGoodsId
;
/**
* 商品分类id(行业)
*/
private
Long
categoryId
;
/**
* 数据商户id
*/
private
Long
userId
;
/**
* 数据商品名称
*/
private
String
dataName
;
/**
* 数据类型:01api,02数据包
*/
private
String
dataType
;
/**
* 数据商品标签
*/
private
String
dataLabel
;
/**
* 数据商品图片
*/
private
String
dataPicture
;
/**
* 数据商品价格
*/
private
BigDecimal
dataPrice
;
/**
* 优惠价格
*/
private
BigDecimal
discountPrice
;
/**
* 价格类型:01免费,02收费
*/
private
String
priceType
;
/**
* 商品规格
*/
private
String
goodsStandards
;
/**
* 数据状态:01预售,02在售中,03下架,04上架
*/
private
String
dataStatus
;
/**
* 审核状态:01待审核,02已审核,03未通过
*/
private
String
auditStatus
;
/**
* 清洗规则(脱敏校验)
*/
private
String
cleanRule
;
/**
* 驳回原因
*/
private
String
rejectReason
;
/**
* 审核人
*/
private
String
auditPerson
;
/**
* 审核时间起
*/
private
Date
auditTimeStart
;
/**
* 审核时间止
*/
private
Date
auditTimeEnd
;
/**
* 创建时间起
*/
private
Date
creTimeStart
;
/**
* 创建时间止
*/
private
Date
creTimeEnd
;
/**
* 创建人
*/
private
String
crePerson
;
/**
* 更新时间起
*/
private
Date
uptTimeStart
;
/**
* 更新时间止
*/
private
Date
uptTimeEnd
;
/**
* 更新人
*/
private
String
uptPerson
;
/**
* 删除标识
*/
private
String
delFlag
;
/**
* 年(元)
*/
private
BigDecimal
yearType
;
/**
* 季(元)
*/
private
BigDecimal
seasonType
;
/**
* 月(元)
*/
private
BigDecimal
monthType
;
/**
* 次(元)
*/
private
BigDecimal
secondType
;
public
Long
getDataGoodsId
()
{
return
dataGoodsId
;
}
public
void
setDataGoodsId
(
Long
dataGoodsId
)
{
this
.
dataGoodsId
=
dataGoodsId
;
}
public
Long
getCategoryId
()
{
return
categoryId
;
}
public
void
setCategoryId
(
Long
categoryId
)
{
this
.
categoryId
=
categoryId
;
}
public
Long
getUserId
()
{
return
userId
;
}
public
void
setUserId
(
Long
userId
)
{
this
.
userId
=
userId
;
}
public
String
getDataName
()
{
return
dataName
;
}
public
void
setDataName
(
String
dataName
)
{
this
.
dataName
=
dataName
;
}
public
String
getDataType
()
{
return
dataType
;
}
public
void
setDataType
(
String
dataType
)
{
this
.
dataType
=
dataType
;
}
public
String
getDataLabel
()
{
return
dataLabel
;
}
public
void
setDataLabel
(
String
dataLabel
)
{
this
.
dataLabel
=
dataLabel
;
}
public
String
getDataPicture
()
{
return
dataPicture
;
}
public
void
setDataPicture
(
String
dataPicture
)
{
this
.
dataPicture
=
dataPicture
;
}
public
BigDecimal
getDataPrice
()
{
return
dataPrice
;
}
public
void
setDataPrice
(
BigDecimal
dataPrice
)
{
this
.
dataPrice
=
dataPrice
;
}
public
BigDecimal
getDiscountPrice
()
{
return
discountPrice
;
}
public
void
setDiscountPrice
(
BigDecimal
discountPrice
)
{
this
.
discountPrice
=
discountPrice
;
}
public
String
getPriceType
()
{
return
priceType
;
}
public
void
setPriceType
(
String
priceType
)
{
this
.
priceType
=
priceType
;
}
public
String
getGoodsStandards
()
{
return
goodsStandards
;
}
public
void
setGoodsStandards
(
String
goodsStandards
)
{
this
.
goodsStandards
=
goodsStandards
;
}
public
String
getDataStatus
()
{
return
dataStatus
;
}
public
void
setDataStatus
(
String
dataStatus
)
{
this
.
dataStatus
=
dataStatus
;
}
public
String
getAuditStatus
()
{
return
auditStatus
;
}
public
void
setAuditStatus
(
String
auditStatus
)
{
this
.
auditStatus
=
auditStatus
;
}
public
String
getCleanRule
()
{
return
cleanRule
;
}
public
void
setCleanRule
(
String
cleanRule
)
{
this
.
cleanRule
=
cleanRule
;
}
public
String
getRejectReason
()
{
return
rejectReason
;
}
public
void
setRejectReason
(
String
rejectReason
)
{
this
.
rejectReason
=
rejectReason
;
}
public
String
getAuditPerson
()
{
return
auditPerson
;
}
public
void
setAuditPerson
(
String
auditPerson
)
{
this
.
auditPerson
=
auditPerson
;
}
public
Date
getAuditTimeStart
()
{
return
auditTimeStart
;
}
public
void
setAuditTimeStart
(
Date
auditTimeStart
)
{
this
.
auditTimeStart
=
auditTimeStart
;
}
public
Date
getAuditTimeEnd
()
{
return
auditTimeEnd
;
}
public
void
setAuditTimeEnd
(
Date
auditTimeEnd
)
{
this
.
auditTimeEnd
=
auditTimeEnd
;
}
public
Date
getCreTimeStart
()
{
return
creTimeStart
;
}
public
void
setCreTimeStart
(
Date
creTimeStart
)
{
this
.
creTimeStart
=
creTimeStart
;
}
public
Date
getCreTimeEnd
()
{
return
creTimeEnd
;
}
public
void
setCreTimeEnd
(
Date
creTimeEnd
)
{
this
.
creTimeEnd
=
creTimeEnd
;
}
public
String
getCrePerson
()
{
return
crePerson
;
}
public
void
setCrePerson
(
String
crePerson
)
{
this
.
crePerson
=
crePerson
;
}
public
Date
getUptTimeStart
()
{
return
uptTimeStart
;
}
public
void
setUptTimeStart
(
Date
uptTimeStart
)
{
this
.
uptTimeStart
=
uptTimeStart
;
}
public
Date
getUptTimeEnd
()
{
return
uptTimeEnd
;
}
public
void
setUptTimeEnd
(
Date
uptTimeEnd
)
{
this
.
uptTimeEnd
=
uptTimeEnd
;
}
public
String
getUptPerson
()
{
return
uptPerson
;
}
public
void
setUptPerson
(
String
uptPerson
)
{
this
.
uptPerson
=
uptPerson
;
}
public
String
getDelFlag
()
{
return
delFlag
;
}
public
void
setDelFlag
(
String
delFlag
)
{
this
.
delFlag
=
delFlag
;
}
public
BigDecimal
getYearType
()
{
return
yearType
;
}
public
void
setYearType
(
BigDecimal
yearType
)
{
this
.
yearType
=
yearType
;
}
public
BigDecimal
getSeasonType
()
{
return
seasonType
;
}
public
void
setSeasonType
(
BigDecimal
seasonType
)
{
this
.
seasonType
=
seasonType
;
}
public
BigDecimal
getMonthType
()
{
return
monthType
;
}
public
void
setMonthType
(
BigDecimal
monthType
)
{
this
.
monthType
=
monthType
;
}
public
BigDecimal
getSecondType
()
{
return
secondType
;
}
public
void
setSecondType
(
BigDecimal
secondType
)
{
this
.
secondType
=
secondType
;
}
}
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