Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gogirl-miniapp-backend
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
huluobin
gogirl-miniapp-backend
Commits
3698c7af
Commit
3698c7af
authored
May 27, 2020
by
huluobin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
逗号分隔
parent
7b563b12
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
87 additions
and
65 deletions
+87
-65
IOwnProduceService.java
...om/gogirl/application/order/serve/IOwnProduceService.java
+2
-9
OrderManageServiceImpl.java
.../application/order/serve/impl/OrderManageServiceImpl.java
+14
-0
OwnProduceServiceImpl.java
...l/application/order/serve/impl/OwnProduceServiceImpl.java
+6
-35
ScheduleManageServiceImpl.java
...plication/order/serve/impl/ScheduleManageServiceImpl.java
+18
-0
OrderManageDTOAssembler.java
...in/java/com/gogirl/assembler/OrderManageDTOAssembler.java
+5
-1
OwnProduceAssembler.java
src/main/java/com/gogirl/assembler/OwnProduceAssembler.java
+12
-0
ScheduleManageDTOAssembler.java
...java/com/gogirl/assembler/ScheduleManageDTOAssembler.java
+4
-0
OrderServe.java
src/main/java/com/gogirl/domain/order/serve/OrderServe.java
+4
-2
ScheduleServe.java
...ain/java/com/gogirl/domain/order/serve/ScheduleServe.java
+8
-0
OwnProduceController.java
...m/gogirl/interfaces/order/serve/OwnProduceController.java
+7
-14
OrderServeDTO.java
src/main/java/com/gogirl/shared/order/OrderServeDTO.java
+3
-0
OwnProduceCommand.java
src/main/java/com/gogirl/shared/order/OwnProduceCommand.java
+1
-4
ScheduleServeDTO.java
src/main/java/com/gogirl/shared/order/ScheduleServeDTO.java
+3
-0
No files found.
src/main/java/com/gogirl/application/order/serve/IOwnProduceService.java
View file @
3698c7af
...
...
@@ -2,8 +2,7 @@ package com.gogirl.application.order.serve;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.gogirl.domain.order.serve.OwnProduce
;
import
com.gogirl.shared.order.OrderServeOwnProduceCommand
;
import
com.gogirl.shared.order.ScheduleServeOwnProduceCommand
;
import
com.gogirl.shared.order.OwnProduceCommand
;
/**
* <p>
...
...
@@ -20,12 +19,6 @@ public interface IOwnProduceService extends IService<OwnProduce> {
*
* @param command
*/
void
saveOrUpdateScheduleOwnProduce
(
ScheduleServe
OwnProduceCommand
command
);
OwnProduce
saveOrUpdateOwnProduce
(
OwnProduceCommand
command
);
/**
* 新增或者更新订单自带款式技法
*
* @param command
*/
void
saveOrUpdateOrderOwnProduce
(
OrderServeOwnProduceCommand
command
);
}
src/main/java/com/gogirl/application/order/serve/impl/OrderManageServiceImpl.java
View file @
3698c7af
...
...
@@ -121,6 +121,8 @@ public class OrderManageServiceImpl extends ServiceImpl<OrderManageMapper, Order
private
CouponService
couponService
;
@Resource
private
ScheduleServeMapper
scheduleServeMapper
;
@Resource
OwnProduceMapper
ownProduceMapper
;
@Override
public
BigDecimal
countSumPay
(
Integer
customerId
,
Integer
departmentId
)
{
...
...
@@ -424,6 +426,12 @@ public class OrderManageServiceImpl extends ServiceImpl<OrderManageMapper, Order
//in查询替换mybatis-resultMap-join查询分页的 服务详情
List
<
OrderServe
>
orderServeList
=
orderServeMapper
.
selectList
(
new
LambdaQueryWrapper
<
OrderServe
>().
in
(
OrderServe:
:
getOrderId
,
orderIdList
));
Map
<
Integer
,
OwnProduce
>
ownProduceMap
=
ownProduceMapper
.
selectBatchIds
(
orderServeList
.
stream
().
map
(
OrderServe:
:
getOwnProduceId
).
collect
(
Collectors
.
toList
())).
stream
().
collect
(
Collectors
.
toMap
(
OwnProduce:
:
getId
,
a
->
a
,
(
k1
,
k2
)
->
k1
));
orderServeList
.
forEach
(
orderServe
->
{
if
(
orderServe
.
getOwnProduceId
()
!=
null
)
{
orderServe
.
setOwnProduce
(
ownProduceMap
.
get
(
orderServe
.
getOwnProduceId
()));
}
});
Map
<
Integer
,
List
<
OrderServe
>>
orderServeMap
=
orderServeList
.
stream
().
collect
(
Collectors
.
groupingBy
(
OrderServe:
:
getOrderId
));
//预约详情
...
...
@@ -1144,6 +1152,12 @@ public class OrderManageServiceImpl extends ServiceImpl<OrderManageMapper, Order
Integer
id
=
orderManage
.
getId
();
//1、订单详情
List
<
OrderServe
>
orderServeList
=
orderServeMapper
.
selectList
(
new
LambdaQueryWrapper
<
OrderServe
>().
eq
(
OrderServe:
:
getOrderId
,
id
));
Map
<
Integer
,
OwnProduce
>
ownProduceMap
=
ownProduceMapper
.
selectBatchIds
(
orderServeList
.
stream
().
map
(
OrderServe:
:
getOwnProduceId
).
collect
(
Collectors
.
toList
())).
stream
().
collect
(
Collectors
.
toMap
(
OwnProduce:
:
getId
,
a
->
a
,
(
k1
,
k2
)
->
k1
));
orderServeList
.
forEach
(
orderServe
->
{
if
(
orderServe
.
getOwnProduceId
()
!=
null
)
{
orderServe
.
setOwnProduce
(
ownProduceMap
.
get
(
orderServe
.
getOwnProduceId
()));
}
});
orderManage
.
setListOrderServer
(
orderServeList
);
//2、订单关联的卡券
...
...
src/main/java/com/gogirl/application/order/serve/impl/OwnProduceServiceImpl.java
View file @
3698c7af
...
...
@@ -4,19 +4,14 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.gogirl.application.order.serve.IOwnProduceService
;
import
com.gogirl.application.order.serve.IOwnProduceTechniqueSkuService
;
import
com.gogirl.domain.order.serve.OrderServe
;
import
com.gogirl.domain.order.serve.OwnProduce
;
import
com.gogirl.domain.order.serve.OwnProduceTechniqueSku
;
import
com.gogirl.domain.order.serve.ScheduleServe
;
import
com.gogirl.domain.product.serve.TechniqueSku
;
import
com.gogirl.infrastructure.common.exception.RRException
;
import
com.gogirl.infrastructure.mapper.order.serve.OrderServeMapper
;
import
com.gogirl.infrastructure.mapper.order.serve.OwnProduceMapper
;
import
com.gogirl.infrastructure.mapper.order.serve.ScheduleServeMapper
;
import
com.gogirl.infrastructure.mapper.product.serve.TechniqueSkuMapper
;
import
com.gogirl.shared.order.OrderServeOwnProduceCommand
;
import
com.gogirl.shared.order.OwnProduceTechniqueSkuCommand
;
import
com.gogirl.shared.order.ScheduleServeOwnProduceCommand
;
import
com.gogirl.shared.order.OwnProduceCommand
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.stereotype.Service
;
import
org.springframework.transaction.annotation.Transactional
;
...
...
@@ -48,46 +43,21 @@ public class OwnProduceServiceImpl extends ServiceImpl<OwnProduceMapper, OwnProd
OrderServeMapper
orderServeMapper
;
@Transactional
(
rollbackFor
=
Exception
.
class
)
@Override
public
void
saveOrUpdateScheduleOwnProduce
(
ScheduleServeOwnProduceCommand
command
)
{
OwnProduce
ownProduce
=
this
.
saveOrUpdateOwnProduce
(
command
.
getOwnProduceId
(),
command
.
getOwnProduceTechniqueSkuCommandList
());
ScheduleServe
scheduleServe
=
scheduleServeMapper
.
selectById
(
command
.
getScheduleServeId
());
if
(
scheduleServe
.
getServeName
().
trim
().
equals
(
ScheduleServe
.
OWN_PRODUCE_KEY
))
{
throw
new
RRException
(
"非自带款式不需要选择款式技法"
);
}
scheduleServe
.
setOwnProduceId
(
ownProduce
.
getId
());
scheduleServeMapper
.
updateById
(
scheduleServe
);
}
@Transactional
(
rollbackFor
=
Exception
.
class
)
@Override
public
void
saveOrUpdateOrderOwnProduce
(
OrderServeOwnProduceCommand
command
)
{
public
OwnProduce
saveOrUpdateOwnProduce
(
OwnProduceCommand
command
)
{
OwnProduce
ownProduce
=
this
.
saveOrUpdateOwnProduce
(
command
.
getOwnProduceId
(),
command
.
getOwnProduceTechniqueSkuCommandList
());
OrderServe
orderServe
=
orderServeMapper
.
selectById
(
command
.
getOrderServeId
());
if
(
orderServe
.
getServeName
().
trim
().
equals
(
ScheduleServe
.
OWN_PRODUCE_KEY
))
{
throw
new
RRException
(
"非自带款式不需要选择款式技法"
);
}
orderServe
.
setOwnProduceId
(
ownProduce
.
getId
());
orderServeMapper
.
updateById
(
orderServe
);
}
private
OwnProduce
saveOrUpdateOwnProduce
(
Integer
ownProduceId
,
List
<
OwnProduceTechniqueSkuCommand
>
ownProduceTechniqueSkuCommandList
)
{
OwnProduce
ownProduce
;
if
(
ownProduceId
==
null
)
{
if
(
command
.
getOwnProduceId
()
==
null
)
{
ownProduce
=
new
OwnProduce
();
this
.
save
(
ownProduce
);
}
else
{
ownProduce
=
this
.
getById
(
ownProduceId
);
ownProduce
=
this
.
getById
(
command
.
getOwnProduceId
()
);
ownProduceTechniqueSkuService
.
remove
(
new
LambdaQueryWrapper
<
OwnProduceTechniqueSku
>().
eq
(
OwnProduceTechniqueSku:
:
getOwnProduceId
,
ownProduce
.
getId
()));
}
List
<
OwnProduceTechniqueSku
>
ownProduceTechniqueSkuList
=
ownProduceTechniqueSkuCommandList
.
stream
()
List
<
OwnProduceTechniqueSku
>
ownProduceTechniqueSkuList
=
command
.
getOwnProduceTechniqueSkuCommandList
()
.
stream
()
.
map
(
ownProduceTechniqueSkuCommand
->
{
OwnProduceTechniqueSku
ownProduceTechniqueSku
=
new
OwnProduceTechniqueSku
();
ownProduceTechniqueSku
.
setQuantity
(
ownProduceTechniqueSkuCommand
.
getQuantity
());
...
...
@@ -121,6 +91,7 @@ public class OwnProduceServiceImpl extends ServiceImpl<OwnProduceMapper, OwnProd
return
techniqueSku
.
getName
()
+
"x"
+
ownProduceTechniqueSku
.
getQuantity
();
})
.
collect
(
Collectors
.
joining
(
","
)));
return
ownProduce
;
}
}
src/main/java/com/gogirl/application/order/serve/impl/ScheduleManageServiceImpl.java
View file @
3698c7af
...
...
@@ -30,6 +30,7 @@ import com.gogirl.infrastructure.common.util.StringUtils;
import
com.gogirl.infrastructure.config.property.GogirlProperties
;
import
com.gogirl.infrastructure.mapper.market.discount.LeisureDiscountConfigMapper
;
import
com.gogirl.infrastructure.mapper.order.serve.OrderManageMapper
;
import
com.gogirl.infrastructure.mapper.order.serve.OwnProduceMapper
;
import
com.gogirl.infrastructure.mapper.order.serve.ScheduleManageMapper
;
import
com.gogirl.infrastructure.mapper.order.serve.ScheduleServeMapper
;
import
com.gogirl.infrastructure.mapper.product.purchase.PurchaseSkuMapper
;
...
...
@@ -81,6 +82,7 @@ public class ScheduleManageServiceImpl extends ServiceImpl<ScheduleManageMapper,
private
final
StoreTechnicianMapper
storeTechnicianMapper
;
private
final
OrderManageMapper
orderManageMapper
;
private
final
StoreManageMapper
storeManageMapper
;
private
final
OwnProduceMapper
ownProduceMapper
;
private
final
StoreClassesTechnicianService
storeClassesTechnicianService
;
...
...
@@ -1032,6 +1034,13 @@ public class ScheduleManageServiceImpl extends ServiceImpl<ScheduleManageMapper,
List
<
ScheduleServe
>
scheduleServeList
=
scheduleServeMapper
.
selectList
(
new
LambdaQueryWrapper
<
ScheduleServe
>().
eq
(
ScheduleServe:
:
getSchId
,
id
));
Map
<
Integer
,
OwnProduce
>
ownProduceMap
=
ownProduceMapper
.
selectBatchIds
(
scheduleServeList
.
stream
().
map
(
ScheduleServe:
:
getOwnProduceId
).
collect
(
Collectors
.
toList
())).
stream
().
collect
(
Collectors
.
toMap
(
OwnProduce:
:
getId
,
a
->
a
,
(
k1
,
k2
)
->
k1
));
scheduleServeList
.
forEach
(
scheduleServe
->
{
if
(
scheduleServe
.
getOwnProduceId
()
!=
null
)
{
scheduleServe
.
setOwnProduce
(
ownProduceMap
.
get
(
scheduleServe
.
getOwnProduceId
()));
}
});
Set
<
ScheduleServe
>
set
=
new
TreeSet
<>(
Comparator
.
comparing
(
o
->
o
.
getSchId
()
+
";"
+
o
.
getServeId
()));
if
(
ListUtil
.
isNotEmpty
(
scheduleServeList
))
{
set
.
addAll
(
scheduleServeList
);
...
...
@@ -1084,6 +1093,13 @@ public class ScheduleManageServiceImpl extends ServiceImpl<ScheduleManageMapper,
List
<
ScheduleServe
>
scheduleServeList
=
scheduleServeMapper
.
selectList
(
new
LambdaQueryWrapper
<
ScheduleServe
>().
in
(
ScheduleServe:
:
getSchId
,
page
.
getRecords
().
stream
().
map
(
ScheduleManage:
:
getId
).
collect
(
Collectors
.
toList
())));
Map
<
Integer
,
List
<
ScheduleServe
>>
scheduleServeMap
=
scheduleServeList
.
stream
().
collect
(
Collectors
.
groupingBy
(
ScheduleServe:
:
getSchId
));
Map
<
Integer
,
OwnProduce
>
ownProduceMap
=
ownProduceMapper
.
selectBatchIds
(
scheduleServeList
.
stream
().
map
(
ScheduleServe:
:
getOwnProduceId
).
collect
(
Collectors
.
toList
())).
stream
().
collect
(
Collectors
.
toMap
(
OwnProduce:
:
getId
,
a
->
a
,
(
k1
,
k2
)
->
k1
));
scheduleServeList
.
forEach
(
scheduleServe
->
{
if
(
scheduleServe
.
getOwnProduceId
()
!=
null
)
{
scheduleServe
.
setOwnProduce
(
ownProduceMap
.
get
(
scheduleServe
.
getOwnProduceId
()));
}
});
page
.
getRecords
().
forEach
(
scheduleManage
->
{
Set
<
ScheduleServe
>
set
=
new
TreeSet
<>(
Comparator
.
comparing
(
o
->
o
.
getSchId
()
+
";"
+
o
.
getServeId
()));
if
(
ListUtil
.
isNotEmpty
(
scheduleServeMap
.
get
(
scheduleManage
.
getId
())))
{
...
...
@@ -1304,6 +1320,7 @@ public class ScheduleManageServiceImpl extends ServiceImpl<ScheduleManageMapper,
scheduleServe
.
setServeNumber
(
1
);
//如果是预约款式
if
(
scheduleServe
.
getProduceId
()
!=
null
)
{
BaseProduce
baseProduce
=
baseProduceMapper
.
selectById
(
scheduleServe
.
getProduceId
());
//款式名称
scheduleServe
.
setProduceName
(
baseProduce
.
getName
());
...
...
@@ -1349,6 +1366,7 @@ public class ScheduleManageServiceImpl extends ServiceImpl<ScheduleManageMapper,
if
(
scheduleServe
.
getServeName
().
trim
().
equals
(
ScheduleServe
.
OWN_PRODUCE_KEY
))
{
scheduleServe
.
setIsOwnProduce
(
1
);
scheduleServe
.
setOwnProduceId
(
scheduleServeCommand
.
getOwnProduceId
());
scheduleServe
.
setOwnProduce
(
ownProduceMapper
.
selectById
(
scheduleServeCommand
.
getOwnProduceId
()));
}
else
{
scheduleServe
.
setIsOwnProduce
(
2
);
scheduleServe
.
setOwnProduceId
(
null
);
...
...
src/main/java/com/gogirl/assembler/OrderManageDTOAssembler.java
View file @
3698c7af
...
...
@@ -90,9 +90,13 @@ public class OrderManageDTOAssembler implements Function<OrderManage, OrderManag
.
map
(
storeTechnicianDTOAssembler
)
.
collect
(
Collectors
.
toList
()));
}
if
(
orderServe
.
getOwnProduce
()
!=
null
)
{
orderServeDTO
.
setOwnProduce
(
orderServe
.
getOwnProduce
());
}
orderServeDTO
.
setTechnicianIds
(
orderServe
.
getTechnicianId
());
orderServeDTO
.
setTechnicianNames
(
orderServe
.
getTechnicianName
());
return
orderServeDTO
;
}
...
...
src/main/java/com/gogirl/assembler/OwnProduceAssembler.java
0 → 100644
View file @
3698c7af
package
com
.
gogirl
.
assembler
;
/**
* <p>
*
* </p>
*
* @author robbendev
* @since 2020/5/27 1:58 下午
*/
public
class
OwnProduceAssembler
{
}
src/main/java/com/gogirl/assembler/ScheduleManageDTOAssembler.java
View file @
3698c7af
...
...
@@ -37,8 +37,12 @@ public class ScheduleManageDTOAssembler implements Function<ScheduleManage, Sche
public
ScheduleServeDTO
apply
(
ScheduleServe
scheduleServe
)
{
ScheduleServeDTO
scheduleServeDTO
=
new
ScheduleServeDTO
();
BeanUtils
.
copyProperties
(
scheduleServe
,
scheduleServeDTO
);
if
(
scheduleServe
.
getOwnProduce
()
!=
null
)
{
scheduleServeDTO
.
setOwnProduce
(
scheduleServe
.
getOwnProduce
());
}
return
scheduleServeDTO
;
}
}
}
src/main/java/com/gogirl/domain/order/serve/OrderServe.java
View file @
3698c7af
...
...
@@ -57,14 +57,16 @@ public class OrderServe implements Serializable {
*/
@ApiModelProperty
(
"服务改价(有正负)"
)
private
BigDecimal
serveChangePrice
=
BigDecimal
.
ZERO
;
@ApiModelProperty
(
"价格"
)
private
BigDecimal
price
=
BigDecimal
.
ZERO
;
@ApiModelProperty
(
"优惠券折扣金额"
)
private
BigDecimal
discountPrice
=
BigDecimal
.
ZERO
;
@ApiModelProperty
(
"支付金额"
)
private
BigDecimal
payPrice
=
BigDecimal
.
ZERO
;
// @ApiModelProperty("闲时折扣减免的金额")
// private BigDecimal leisureDiscountPrice = BigDecimal.ZERO;
/**
* 预约服务vo
*/
...
...
src/main/java/com/gogirl/domain/order/serve/ScheduleServe.java
View file @
3698c7af
...
...
@@ -244,4 +244,12 @@ public class ScheduleServe implements Serializable {
price
.
equals
(
promotionPrice
)
||
(
price
.
equals
(
produceCurrentPrice
)
&&
produceCurrentPrice
.
compareTo
(
produceBargainPrice
)
<
0
);
}
public
Integer
getOwnProduceId
()
{
return
ownProduceId
;
}
public
void
setOwnProduceId
(
Integer
ownProduceId
)
{
this
.
ownProduceId
=
ownProduceId
;
}
}
src/main/java/com/gogirl/interfaces/order/serve/OwnProduceController.java
View file @
3698c7af
...
...
@@ -2,9 +2,9 @@ package com.gogirl.interfaces.order.serve;
import
com.gogirl.application.order.serve.IOwnProduceService
;
import
com.gogirl.domain.order.serve.OwnProduce
;
import
com.gogirl.infrastructure.common.base.JsonResult
;
import
com.gogirl.shared.order.OrderServeOwnProduceCommand
;
import
com.gogirl.shared.order.ScheduleServeOwnProduceCommand
;
import
com.gogirl.shared.order.OwnProduceCommand
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiOperation
;
import
org.springframework.web.bind.annotation.PostMapping
;
...
...
@@ -30,18 +30,11 @@ public class OwnProduceController {
@Resource
IOwnProduceService
ownProduceService
;
@ApiOperation
(
"新增或者更新
预约
自带款式技法"
)
@PostMapping
(
"/saveOrUpdate
Schedule
OwnProduce"
)
public
JsonResult
<
Void
>
saveOrUpdateScheduleOwnProduce
(
@RequestBody
ScheduleServe
OwnProduceCommand
command
)
{
ownProduceService
.
saveOrUpdateSchedul
eOwnProduce
(
command
);
return
JsonResult
.
success
();
@ApiOperation
(
"新增或者更新自带款式技法"
)
@PostMapping
(
"/saveOrUpdateOwnProduce"
)
public
JsonResult
<
OwnProduce
>
saveOrUpdateOwnProduce
(
@RequestBody
OwnProduceCommand
command
)
{
OwnProduce
ownProduce
=
ownProduceService
.
saveOrUpdat
eOwnProduce
(
command
);
return
JsonResult
.
success
(
ownProduce
);
}
@ApiOperation
(
"新增或者更新订单自带款式技法"
)
@PostMapping
(
"/saveOrUpdateOrderOwnProduce"
)
public
JsonResult
<
Void
>
saveOrUpdateOrderOwnProduce
(
@RequestBody
OrderServeOwnProduceCommand
command
)
{
ownProduceService
.
saveOrUpdateOrderOwnProduce
(
command
);
return
JsonResult
.
success
();
}
}
src/main/java/com/gogirl/shared/order/OrderServeDTO.java
View file @
3698c7af
package
com
.
gogirl
.
shared
.
order
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.gogirl.domain.order.serve.OwnProduce
;
import
com.gogirl.shared.store.StoreTechnicianDTO
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
...
...
@@ -119,4 +120,6 @@ public class OrderServeDTO {
private
BigDecimal
discountRate
;
private
BigDecimal
leisurePrice
;
private
OwnProduce
ownProduce
;
}
src/main/java/com/gogirl/shared/order/
ScheduleServe
OwnProduceCommand.java
→
src/main/java/com/gogirl/shared/order/OwnProduceCommand.java
View file @
3698c7af
...
...
@@ -14,13 +14,10 @@ import java.util.List;
* @since 2020/5/27 11:59 上午
*/
@Data
public
class
ScheduleServe
OwnProduceCommand
{
public
class
OwnProduceCommand
{
private
Integer
ownProduceId
;
@ApiModelProperty
(
"预约详情id"
)
private
Integer
scheduleServeId
;
@ApiModelProperty
(
"款式"
)
private
List
<
OwnProduceTechniqueSkuCommand
>
ownProduceTechniqueSkuCommandList
;
...
...
src/main/java/com/gogirl/shared/order/ScheduleServeDTO.java
View file @
3698c7af
package
com
.
gogirl
.
shared
.
order
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.gogirl.domain.order.serve.OwnProduce
;
import
com.gogirl.shared.product.PurchaseSkuDTO
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
...
...
@@ -134,4 +135,6 @@ public class ScheduleServeDTO implements Serializable {
private
String
producePractice
;
private
OwnProduce
ownProduce
;
}
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