Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
T
tcm-system
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
TCM
tcm-system
Commits
8ed98cec
Commit
8ed98cec
authored
Jul 09, 2019
by
zjy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user/role/tright 7.9
parent
a17389b5
Changes
36
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
36 changed files
with
2906 additions
and
0 deletions
+2906
-0
DataController.java
...com/pangding/web/authority/controller/DataController.java
+7
-0
DiscountDetailDao.java
...ava/com/pangding/web/authority/dao/DiscountDetailDao.java
+10
-0
OrderDao.java
src/main/java/com/pangding/web/authority/dao/OrderDao.java
+10
-0
OrderExtendDao.java
...n/java/com/pangding/web/authority/dao/OrderExtendDao.java
+10
-0
OrderRefundDao.java
...n/java/com/pangding/web/authority/dao/OrderRefundDao.java
+10
-0
OrderStatusDao.java
...n/java/com/pangding/web/authority/dao/OrderStatusDao.java
+10
-0
OrderTicketDetailDao.java
.../com/pangding/web/authority/dao/OrderTicketDetailDao.java
+10
-0
OrderTouristDao.java
.../java/com/pangding/web/authority/dao/OrderTouristDao.java
+10
-0
DiscountDetailDaoImpl.java
...angding/web/authority/dao/impl/DiscountDetailDaoImpl.java
+18
-0
OrderDaoImpl.java
...ava/com/pangding/web/authority/dao/impl/OrderDaoImpl.java
+18
-0
OrderExtendDaoImpl.java
...m/pangding/web/authority/dao/impl/OrderExtendDaoImpl.java
+18
-0
OrderRefundDaoImpl.java
...m/pangding/web/authority/dao/impl/OrderRefundDaoImpl.java
+18
-0
OrderStatusDaoImpl.java
...m/pangding/web/authority/dao/impl/OrderStatusDaoImpl.java
+18
-0
OrderTicketDetailDaoImpl.java
...ding/web/authority/dao/impl/OrderTicketDetailDaoImpl.java
+18
-0
OrderTouristDaoImpl.java
.../pangding/web/authority/dao/impl/OrderTouristDaoImpl.java
+18
-0
DataService.java
.../java/com/pangding/web/authority/service/DataService.java
+3
-0
DataServiceImpl.java
.../pangding/web/authority/service/impl/DataServiceImpl.java
+194
-0
DiscountDetailVo.java
.../java/com/pangding/web/authority/vo/DiscountDetailVo.java
+71
-0
OrderExtendVo.java
...ain/java/com/pangding/web/authority/vo/OrderExtendVo.java
+71
-0
OrderRefundVo.java
...ain/java/com/pangding/web/authority/vo/OrderRefundVo.java
+89
-0
OrderStatusVo.java
...ain/java/com/pangding/web/authority/vo/OrderStatusVo.java
+283
-0
OrderTicketDetailVo.java
...va/com/pangding/web/authority/vo/OrderTicketDetailVo.java
+95
-0
OrderTouristVo.java
...in/java/com/pangding/web/authority/vo/OrderTouristVo.java
+74
-0
OrderVo.java
src/main/java/com/pangding/web/authority/vo/OrderVo.java
+336
-0
TyyOrderbackVo.java
...in/java/com/pangding/web/authority/vo/TyyOrderbackVo.java
+354
-0
TyyOrderdetailsVo.java
...java/com/pangding/web/authority/vo/TyyOrderdetailsVo.java
+153
-0
TyyOrdersVo.java
src/main/java/com/pangding/web/authority/vo/TyyOrdersVo.java
+717
-0
TyyTouristVo.java
...main/java/com/pangding/web/authority/vo/TyyTouristVo.java
+70
-0
DiscountDetailGetReqVo.java
...ngding/web/authority/vo/reqvo/DiscountDetailGetReqVo.java
+17
-0
OrderExtendGetReqVo.java
.../pangding/web/authority/vo/reqvo/OrderExtendGetReqVo.java
+27
-0
OrderGetReqVo.java
...va/com/pangding/web/authority/vo/reqvo/OrderGetReqVo.java
+17
-0
OrderRefundGetReqVo.java
.../pangding/web/authority/vo/reqvo/OrderRefundGetReqVo.java
+17
-0
OrderStatusGetReqVo.java
.../pangding/web/authority/vo/reqvo/OrderStatusGetReqVo.java
+17
-0
OrderTicketDetailGetReqVo.java
...ing/web/authority/vo/reqvo/OrderTicketDetailGetReqVo.java
+17
-0
OrderTouristGetReqVo.java
...pangding/web/authority/vo/reqvo/OrderTouristGetReqVo.java
+17
-0
OrderResVo.java
.../java/com/pangding/web/authority/vo/resvo/OrderResVo.java
+64
-0
No files found.
src/main/java/com/pangding/web/authority/controller/DataController.java
View file @
8ed98cec
...
...
@@ -3,6 +3,7 @@ package com.pangding.web.authority.controller;
import
com.pangding.web.authority.service.DataService
;
import
com.pangding.web.authority.vo.reqvo.SaveDataReqVo
;
import
com.pangding.web.authority.vo.resvo.FindResVo
;
import
com.pangding.web.authority.vo.resvo.OrderResVo
;
import
com.yanzuoguang.util.vo.ResponseResult
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.http.MediaType
;
...
...
@@ -26,4 +27,10 @@ public class DataController {
dataServiceImpl
.
save
(
reqVo
);
return
new
ResponseResult
();
}
@PostMapping
(
value
=
"/saveOrderStepTwo"
,
produces
=
MediaType
.
APPLICATION_JSON_UTF8_VALUE
)
public
ResponseResult
saveOrderStepTwo
(
@RequestBody
OrderResVo
reqVo
){
dataServiceImpl
.
saveOrderStepTwo
(
reqVo
);
return
new
ResponseResult
();
}
}
src/main/java/com/pangding/web/authority/dao/DiscountDetailDao.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
dao
;
import
com.yanzuoguang.dao.BaseDao
;
/**
* @Author zhangjinyao
* @create 2019/7/8 17:01
*/
public
interface
DiscountDetailDao
extends
BaseDao
{
}
src/main/java/com/pangding/web/authority/dao/OrderDao.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
dao
;
import
com.yanzuoguang.dao.BaseDao
;
/**
* @Author zhangjinyao
* @create 2019/7/7 21:30
*/
public
interface
OrderDao
extends
BaseDao
{
}
src/main/java/com/pangding/web/authority/dao/OrderExtendDao.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
dao
;
import
com.yanzuoguang.dao.BaseDao
;
/**
* @Author zhangjinyao
* @create 2019/7/7 21:39
*/
public
interface
OrderExtendDao
extends
BaseDao
{
}
src/main/java/com/pangding/web/authority/dao/OrderRefundDao.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
dao
;
import
com.yanzuoguang.dao.BaseDao
;
/**
* @Author zhangjinyao
* @create 2019/7/7 21:48
*/
public
interface
OrderRefundDao
extends
BaseDao
{
}
src/main/java/com/pangding/web/authority/dao/OrderStatusDao.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
dao
;
import
com.yanzuoguang.dao.BaseDao
;
/**
* @Author zhangjinyao
* @create 2019/7/7 22:06
*/
public
interface
OrderStatusDao
extends
BaseDao
{
}
src/main/java/com/pangding/web/authority/dao/OrderTicketDetailDao.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
dao
;
import
com.yanzuoguang.dao.BaseDao
;
/**
* @Author zhangjinyao
* @create 2019/7/7 22:15
*/
public
interface
OrderTicketDetailDao
extends
BaseDao
{
}
src/main/java/com/pangding/web/authority/dao/OrderTouristDao.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
dao
;
import
com.yanzuoguang.dao.BaseDao
;
/**
* @Author zhangjinyao
* @create 2019/7/8 16:53
*/
public
interface
OrderTouristDao
extends
BaseDao
{
}
src/main/java/com/pangding/web/authority/dao/impl/DiscountDetailDaoImpl.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
dao
.
impl
;
import
com.pangding.web.authority.dao.DiscountDetailDao
;
import
com.pangding.web.authority.vo.DiscountDetailVo
;
import
com.yanzuoguang.dao.impl.BaseDaoImpl
;
import
org.springframework.stereotype.Component
;
/**
* @Author zhangjinyao
* @create 2019/7/8 17:02
*/
@Component
public
class
DiscountDetailDaoImpl
extends
BaseDaoImpl
implements
DiscountDetailDao
{
@Override
protected
void
init
()
{
register
(
DiscountDetailVo
.
class
);
}
}
src/main/java/com/pangding/web/authority/dao/impl/OrderDaoImpl.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
dao
.
impl
;
import
com.pangding.web.authority.dao.OrderDao
;
import
com.pangding.web.authority.vo.OrderVo
;
import
com.yanzuoguang.dao.impl.BaseDaoImpl
;
import
org.springframework.stereotype.Component
;
/**
* @Author zhangjinyao
* @create 2019/7/7 21:31
*/
@Component
public
class
OrderDaoImpl
extends
BaseDaoImpl
implements
OrderDao
{
@Override
protected
void
init
()
{
register
(
OrderVo
.
class
);
}
}
src/main/java/com/pangding/web/authority/dao/impl/OrderExtendDaoImpl.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
dao
.
impl
;
import
com.pangding.web.authority.dao.OrderExtendDao
;
import
com.pangding.web.authority.vo.OrderExtendVo
;
import
com.yanzuoguang.dao.impl.BaseDaoImpl
;
import
org.springframework.stereotype.Component
;
/**
* @Author zhangjinyao
* @create 2019/7/7 21:40
*/
@Component
public
class
OrderExtendDaoImpl
extends
BaseDaoImpl
implements
OrderExtendDao
{
@Override
protected
void
init
()
{
register
(
OrderExtendVo
.
class
);
}
}
src/main/java/com/pangding/web/authority/dao/impl/OrderRefundDaoImpl.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
dao
.
impl
;
import
com.pangding.web.authority.dao.OrderRefundDao
;
import
com.pangding.web.authority.vo.OrderRefundVo
;
import
com.yanzuoguang.dao.impl.BaseDaoImpl
;
import
org.springframework.stereotype.Component
;
/**
* @Author zhangjinyao
* @create 2019/7/7 21:48
*/
@Component
public
class
OrderRefundDaoImpl
extends
BaseDaoImpl
implements
OrderRefundDao
{
@Override
protected
void
init
()
{
register
(
OrderRefundVo
.
class
);
}
}
src/main/java/com/pangding/web/authority/dao/impl/OrderStatusDaoImpl.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
dao
.
impl
;
import
com.pangding.web.authority.dao.OrderStatusDao
;
import
com.pangding.web.authority.vo.OrderStatusVo
;
import
com.yanzuoguang.dao.impl.BaseDaoImpl
;
import
org.springframework.stereotype.Component
;
/**
* @Author zhangjinyao
* @create 2019/7/7 22:07
*/
@Component
public
class
OrderStatusDaoImpl
extends
BaseDaoImpl
implements
OrderStatusDao
{
@Override
protected
void
init
()
{
register
(
OrderStatusVo
.
class
);
}
}
src/main/java/com/pangding/web/authority/dao/impl/OrderTicketDetailDaoImpl.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
dao
.
impl
;
import
com.pangding.web.authority.dao.OrderTicketDetailDao
;
import
com.pangding.web.authority.vo.OrderTicketDetailVo
;
import
com.yanzuoguang.dao.impl.BaseDaoImpl
;
import
org.springframework.stereotype.Component
;
/**
* @Author zhangjinyao
* @create 2019/7/7 22:15
*/
@Component
public
class
OrderTicketDetailDaoImpl
extends
BaseDaoImpl
implements
OrderTicketDetailDao
{
@Override
protected
void
init
()
{
register
(
OrderTicketDetailVo
.
class
);
}
}
src/main/java/com/pangding/web/authority/dao/impl/OrderTouristDaoImpl.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
dao
.
impl
;
import
com.pangding.web.authority.dao.OrderTouristDao
;
import
com.pangding.web.authority.vo.OrderTouristVo
;
import
com.yanzuoguang.dao.impl.BaseDaoImpl
;
import
org.springframework.stereotype.Component
;
/**
* @Author zhangjinyao
* @create 2019/7/8 16:53
*/
@Component
public
class
OrderTouristDaoImpl
extends
BaseDaoImpl
implements
OrderTouristDao
{
@Override
protected
void
init
()
{
register
(
OrderTouristVo
.
class
);
}
}
src/main/java/com/pangding/web/authority/service/DataService.java
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
service
;
import
com.pangding.web.authority.vo.resvo.FindResVo
;
import
com.pangding.web.authority.vo.resvo.OrderResVo
;
/**
...
...
@@ -9,4 +10,6 @@ import com.pangding.web.authority.vo.resvo.FindResVo;
*/
public
interface
DataService
{
void
save
(
FindResVo
reqVo
);
void
saveOrderStepTwo
(
OrderResVo
reqVo
);
}
src/main/java/com/pangding/web/authority/service/impl/DataServiceImpl.java
View file @
8ed98cec
This diff is collapsed.
Click to expand it.
src/main/java/com/pangding/web/authority/vo/DiscountDetailVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
;
import
com.yanzuoguang.dao.TableAnnotation
;
/**
* @Author zhangjinyao
* @create 2019/7/7 20:27
*/
@TableAnnotation
(
"pd_discount_detail"
)
public
class
DiscountDetailVo
{
/**
* 编号
*/
private
String
id
;
/**
* 订单编号
*/
private
String
order_id
;
/**
* 0现金红包,1代金券,2折扣券,3抵扣券
*/
private
String
discount_method
;
/**
* 抵扣金额
*/
private
Double
discount_money
;
/**
* 创建时间
*/
private
String
create_time
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getOrder_id
()
{
return
order_id
;
}
public
void
setOrder_id
(
String
order_id
)
{
this
.
order_id
=
order_id
;
}
public
String
getDiscount_method
()
{
return
discount_method
;
}
public
void
setDiscount_method
(
String
discount_method
)
{
this
.
discount_method
=
discount_method
;
}
public
Double
getDiscount_money
()
{
return
discount_money
;
}
public
void
setDiscount_money
(
Double
discount_money
)
{
this
.
discount_money
=
discount_money
;
}
public
String
getCreate_time
()
{
return
create_time
;
}
public
void
setCreate_time
(
String
create_time
)
{
this
.
create_time
=
create_time
;
}
}
src/main/java/com/pangding/web/authority/vo/OrderExtendVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
;
import
com.yanzuoguang.dao.TableAnnotation
;
/**
* @Author zhangjinyao
* @create 2019/7/7 20:25
*/
@TableAnnotation
(
"pd_order_extend"
)
public
class
OrderExtendVo
{
/**
* 编号
*/
private
String
id
;
/**
* 订单编号
*/
private
String
order_id
;
/**
* 产品类型
*/
private
String
product_type
;
/**
* 标题
*/
private
String
title
;
/**
* 内容
*/
private
String
content
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getOrder_id
()
{
return
order_id
;
}
public
void
setOrder_id
(
String
order_id
)
{
this
.
order_id
=
order_id
;
}
public
String
getProduct_type
()
{
return
product_type
;
}
public
void
setProduct_type
(
String
product_type
)
{
this
.
product_type
=
product_type
;
}
public
String
getTitle
()
{
return
title
;
}
public
void
setTitle
(
String
title
)
{
this
.
title
=
title
;
}
public
String
getContent
()
{
return
content
;
}
public
void
setContent
(
String
content
)
{
this
.
content
=
content
;
}
}
src/main/java/com/pangding/web/authority/vo/OrderRefundVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
;
import
com.yanzuoguang.dao.TableAnnotation
;
/**
* @Author zhangjinyao
* @create 2019/7/7 20:21
*/
@TableAnnotation
(
"pd_order_refund"
)
public
class
OrderRefundVo
{
private
String
id
;
private
String
order_id
;
/**
* 退款金额
*/
private
Double
refund_amount
;
/**
* 退款手续费
*/
private
Double
refund_fee
;
private
String
refund_reason
;
private
String
refund_status
;
private
String
refund_date
;
private
String
operator
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getOrder_id
()
{
return
order_id
;
}
public
void
setOrder_id
(
String
order_id
)
{
this
.
order_id
=
order_id
;
}
public
Double
getRefund_amount
()
{
return
refund_amount
;
}
public
void
setRefund_amount
(
Double
refund_amount
)
{
this
.
refund_amount
=
refund_amount
;
}
public
Double
getRefund_fee
()
{
return
refund_fee
;
}
public
void
setRefund_fee
(
Double
refund_fee
)
{
this
.
refund_fee
=
refund_fee
;
}
public
String
getRefund_reason
()
{
return
refund_reason
;
}
public
void
setRefund_reason
(
String
refund_reason
)
{
this
.
refund_reason
=
refund_reason
;
}
public
String
getRefund_status
()
{
return
refund_status
;
}
public
void
setRefund_status
(
String
refund_status
)
{
this
.
refund_status
=
refund_status
;
}
public
String
getRefund_date
()
{
return
refund_date
;
}
public
void
setRefund_date
(
String
refund_date
)
{
this
.
refund_date
=
refund_date
;
}
public
String
getOperator
()
{
return
operator
;
}
public
void
setOperator
(
String
operator
)
{
this
.
operator
=
operator
;
}
}
src/main/java/com/pangding/web/authority/vo/OrderStatusVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
;
import
com.yanzuoguang.dao.TableAnnotation
;
/**
* @Author zhangjinyao
* @create 2019/7/7 20:16
*/
@TableAnnotation
(
"pd_order_status"
)
public
class
OrderStatusVo
{
/**
* 编号
*/
private
String
id
;
/**
* 0未支付,1已支付
*/
private
String
payment_status
;
/**
* 支付类型
*/
private
String
pay_type
;
/**
* 支付单号
*/
private
String
payment_id
;
/**
* 支付时间
*/
private
String
payment_time
;
/**
* 支付中间id
*/
private
String
pay_third_id
;
/**
* 支付通联id
*/
private
String
pay_tonglian_id
;
/**
* 分账商
*/
private
String
sale_company_id
;
/**
* 分账第三方id
*/
private
String
third_id
;
/**
* 0未分账,1已分账,2分账失败,3不能分账
*/
private
Integer
subledge_status
;
/**
* 分账时间
*/
private
String
subledge_time
;
/**
* 0不可分润,1可分润,2已分润
*/
private
String
divide_status
;
/**
* 分润时间
*/
private
String
divide_time
;
/**
* 0未支付 1出票中(已支付)2出票成功/预订成功/有房 3出票失败/预订失败/无房 4核销中 5核销完成 6部分退货/退款 7全部退款退货 8取消 9已完成
*/
private
String
order_status
;
/**
* 第三方订单号
*/
private
String
third_order_id
;
/**
* 0未汇总,1已汇总
*/
private
String
is_summarize
;
/**
* 汇总时间
*/
private
String
summarize_time
;
/**
* 供应商
*/
private
String
product_company_id
;
/**
* 接口商
*/
private
String
interface_company_id
;
/**
* 供应商名称
*/
private
String
product_company_name
;
/**
* 是否删除 0 未删除 1 已删除
*/
private
String
is_delete
;
private
String
agent_company_id
;
private
String
agent_company_name
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getPayment_status
()
{
return
payment_status
;
}
public
void
setPayment_status
(
String
payment_status
)
{
this
.
payment_status
=
payment_status
;
}
public
String
getPay_type
()
{
return
pay_type
;
}
public
void
setPay_type
(
String
pay_type
)
{
this
.
pay_type
=
pay_type
;
}
public
String
getPayment_id
()
{
return
payment_id
;
}
public
void
setPayment_id
(
String
payment_id
)
{
this
.
payment_id
=
payment_id
;
}
public
String
getPayment_time
()
{
return
payment_time
;
}
public
void
setPayment_time
(
String
payment_time
)
{
this
.
payment_time
=
payment_time
;
}
public
String
getPay_third_id
()
{
return
pay_third_id
;
}
public
void
setPay_third_id
(
String
pay_third_id
)
{
this
.
pay_third_id
=
pay_third_id
;
}
public
String
getPay_tonglian_id
()
{
return
pay_tonglian_id
;
}
public
void
setPay_tonglian_id
(
String
pay_tonglian_id
)
{
this
.
pay_tonglian_id
=
pay_tonglian_id
;
}
public
String
getSale_company_id
()
{
return
sale_company_id
;
}
public
void
setSale_company_id
(
String
sale_company_id
)
{
this
.
sale_company_id
=
sale_company_id
;
}
public
String
getThird_id
()
{
return
third_id
;
}
public
void
setThird_id
(
String
third_id
)
{
this
.
third_id
=
third_id
;
}
public
Integer
getSubledge_status
()
{
return
subledge_status
;
}
public
void
setSubledge_status
(
Integer
subledge_status
)
{
this
.
subledge_status
=
subledge_status
;
}
public
String
getSubledge_time
()
{
return
subledge_time
;
}
public
void
setSubledge_time
(
String
subledge_time
)
{
this
.
subledge_time
=
subledge_time
;
}
public
String
getDivide_status
()
{
return
divide_status
;
}
public
void
setDivide_status
(
String
divide_status
)
{
this
.
divide_status
=
divide_status
;
}
public
String
getDivide_time
()
{
return
divide_time
;
}
public
void
setDivide_time
(
String
divide_time
)
{
this
.
divide_time
=
divide_time
;
}
public
String
getOrder_status
()
{
return
order_status
;
}
public
void
setOrder_status
(
String
order_status
)
{
this
.
order_status
=
order_status
;
}
public
String
getThird_order_id
()
{
return
third_order_id
;
}
public
void
setThird_order_id
(
String
third_order_id
)
{
this
.
third_order_id
=
third_order_id
;
}
public
String
getIs_summarize
()
{
return
is_summarize
;
}
public
void
setIs_summarize
(
String
is_summarize
)
{
this
.
is_summarize
=
is_summarize
;
}
public
String
getSummarize_time
()
{
return
summarize_time
;
}
public
void
setSummarize_time
(
String
summarize_time
)
{
this
.
summarize_time
=
summarize_time
;
}
public
String
getProduct_company_id
()
{
return
product_company_id
;
}
public
void
setProduct_company_id
(
String
product_company_id
)
{
this
.
product_company_id
=
product_company_id
;
}
public
String
getInterface_company_id
()
{
return
interface_company_id
;
}
public
void
setInterface_company_id
(
String
interface_company_id
)
{
this
.
interface_company_id
=
interface_company_id
;
}
public
String
getProduct_company_name
()
{
return
product_company_name
;
}
public
void
setProduct_company_name
(
String
product_company_name
)
{
this
.
product_company_name
=
product_company_name
;
}
public
String
getIs_delete
()
{
return
is_delete
;
}
public
void
setIs_delete
(
String
is_delete
)
{
this
.
is_delete
=
is_delete
;
}
public
String
getAgent_company_id
()
{
return
agent_company_id
;
}
public
void
setAgent_company_id
(
String
agent_company_id
)
{
this
.
agent_company_id
=
agent_company_id
;
}
public
String
getAgent_company_name
()
{
return
agent_company_name
;
}
public
void
setAgent_company_name
(
String
agent_company_name
)
{
this
.
agent_company_name
=
agent_company_name
;
}
}
src/main/java/com/pangding/web/authority/vo/OrderTicketDetailVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
;
import
com.yanzuoguang.dao.TableAnnotation
;
/**
* @Author zhangjinyao
* @create 2019/7/7 20:31
*/
@TableAnnotation
(
"pd_order_ticket_detail"
)
public
class
OrderTicketDetailVo
{
/**
* 编号
*/
private
String
id
;
/**
* 订单编号
*/
private
String
order_id
;
/**
* 验证码
*/
private
String
verify_code
;
/**
* 验证码图片
*/
private
String
code_url
;
/**
* 取票码
*/
private
String
ticket_code
;
/**
* 0未使用,1已核销,2退票,3过期
*/
private
String
ticket_status
;
/**
* 时间
*/
private
String
time
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getOrder_id
()
{
return
order_id
;
}
public
void
setOrder_id
(
String
order_id
)
{
this
.
order_id
=
order_id
;
}
public
String
getVerify_code
()
{
return
verify_code
;
}
public
void
setVerify_code
(
String
verify_code
)
{
this
.
verify_code
=
verify_code
;
}
public
String
getCode_url
()
{
return
code_url
;
}
public
void
setCode_url
(
String
code_url
)
{
this
.
code_url
=
code_url
;
}
public
String
getTicket_code
()
{
return
ticket_code
;
}
public
void
setTicket_code
(
String
ticket_code
)
{
this
.
ticket_code
=
ticket_code
;
}
public
String
getTicket_status
()
{
return
ticket_status
;
}
public
void
setTicket_status
(
String
ticket_status
)
{
this
.
ticket_status
=
ticket_status
;
}
public
String
getTime
()
{
return
time
;
}
public
void
setTime
(
String
time
)
{
this
.
time
=
time
;
}
}
src/main/java/com/pangding/web/authority/vo/OrderTouristVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
;
import
com.yanzuoguang.dao.TableAnnotation
;
/**
* @Author zhangjinyao
* @create 2019/7/7 20:33
*/
@TableAnnotation
(
"pd_order_tourist"
)
public
class
OrderTouristVo
{
private
String
id
;
private
String
order_id
;
private
String
name
;
private
String
credential_number
;
private
String
credential_type
;
private
String
phone
;
private
Integer
category
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getOrder_id
()
{
return
order_id
;
}
public
void
setOrder_id
(
String
order_id
)
{
this
.
order_id
=
order_id
;
}
public
String
getName
()
{
return
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
String
getCredential_number
()
{
return
credential_number
;
}
public
void
setCredential_number
(
String
credential_number
)
{
this
.
credential_number
=
credential_number
;
}
public
String
getCredential_type
()
{
return
credential_type
;
}
public
void
setCredential_type
(
String
credential_type
)
{
this
.
credential_type
=
credential_type
;
}
public
String
getPhone
()
{
return
phone
;
}
public
void
setPhone
(
String
phone
)
{
this
.
phone
=
phone
;
}
public
Integer
getCategory
()
{
return
category
;
}
public
void
setCategory
(
Integer
category
)
{
this
.
category
=
category
;
}
}
src/main/java/com/pangding/web/authority/vo/OrderVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
;
import
com.yanzuoguang.dao.TableAnnotation
;
/**
* @Author zhangjinyao
* @create 2019/7/7 20:11
*/
@TableAnnotation
(
"pd_order"
)
public
class
OrderVo
{
/**
* 编号
*/
private
String
id
;
/**
* 父订单编号
*/
private
String
pid
;
/**
* 单价
*/
private
Double
unit_price
;
/**
* 成本单价
*/
private
Double
cost_price
;
/**
* 数量
*/
private
Integer
order_num
;
/**
* 退货数量
*/
private
Integer
refund_num
;
/**
* 总价
*/
private
Double
total_money
;
/**
* 胖丁抵扣金额
*/
private
Double
pd_discount_money
;
/**
* 胖丁实际支付
*/
private
Double
pd_order_money
;
/**
* 胖丁退款金额
*/
private
Double
pd_refund_money
;
/**
* 成本总价
*/
private
Double
cost_total_money
;
/**
* 商家抵扣金额
*/
private
Double
discount_money
;
/**
* 商户实际支付
*/
private
Double
order_money
;
/**
* 订单手续费
*/
private
Double
order_fee
;
/**
* 商家退款金额
*/
private
Double
refund_money
;
/**
* 退款手续费
*/
private
Double
refund_fee
;
/**
* 0其他,1景区,2酒店,3餐饮,4特产,5运营车,10组合订单
*/
private
Integer
order_type
;
/**
* 子订单类型
*/
private
String
sub_order_type
;
/**
* 订单时间
*/
private
String
order_time
;
/**
* 产品id
*/
private
String
product_code
;
/**
* 产品名称
*/
private
String
product_name
;
/**
* 游玩时间
*/
private
String
play_date
;
/**
* 用户id
*/
private
String
user_id
;
/**
* 商户id
*/
private
String
merchant_id
;
/**
* 商户名称
*/
private
String
merchant_name
;
/**
* 手机号
*/
private
String
ticket_phone
;
/**
* 景点编号
*/
private
String
area_code
;
public
String
getArea_code
()
{
return
area_code
;
}
public
void
setArea_code
(
String
area_code
)
{
this
.
area_code
=
area_code
;
}
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getPid
()
{
return
pid
;
}
public
void
setPid
(
String
pid
)
{
this
.
pid
=
pid
;
}
public
Double
getUnit_price
()
{
return
unit_price
;
}
public
void
setUnit_price
(
Double
unit_price
)
{
this
.
unit_price
=
unit_price
;
}
public
Double
getCost_price
()
{
return
cost_price
;
}
public
void
setCost_price
(
Double
cost_price
)
{
this
.
cost_price
=
cost_price
;
}
public
Integer
getOrder_num
()
{
return
order_num
;
}
public
void
setOrder_num
(
Integer
order_num
)
{
this
.
order_num
=
order_num
;
}
public
Integer
getRefund_num
()
{
return
refund_num
;
}
public
void
setRefund_num
(
Integer
refund_num
)
{
this
.
refund_num
=
refund_num
;
}
public
Double
getTotal_money
()
{
return
total_money
;
}
public
void
setTotal_money
(
Double
total_money
)
{
this
.
total_money
=
total_money
;
}
public
Double
getPd_discount_money
()
{
return
pd_discount_money
;
}
public
void
setPd_discount_money
(
Double
pd_discount_money
)
{
this
.
pd_discount_money
=
pd_discount_money
;
}
public
Double
getPd_order_money
()
{
return
pd_order_money
;
}
public
void
setPd_order_money
(
Double
pd_order_money
)
{
this
.
pd_order_money
=
pd_order_money
;
}
public
Double
getPd_refund_money
()
{
return
pd_refund_money
;
}
public
void
setPd_refund_money
(
Double
pd_refund_money
)
{
this
.
pd_refund_money
=
pd_refund_money
;
}
public
Double
getCost_total_money
()
{
return
cost_total_money
;
}
public
void
setCost_total_money
(
Double
cost_total_money
)
{
this
.
cost_total_money
=
cost_total_money
;
}
public
Double
getDiscount_money
()
{
return
discount_money
;
}
public
void
setDiscount_money
(
Double
discount_money
)
{
this
.
discount_money
=
discount_money
;
}
public
Double
getOrder_money
()
{
return
order_money
;
}
public
void
setOrder_money
(
Double
order_money
)
{
this
.
order_money
=
order_money
;
}
public
Double
getOrder_fee
()
{
return
order_fee
;
}
public
void
setOrder_fee
(
Double
order_fee
)
{
this
.
order_fee
=
order_fee
;
}
public
Double
getRefund_money
()
{
return
refund_money
;
}
public
void
setRefund_money
(
Double
refund_money
)
{
this
.
refund_money
=
refund_money
;
}
public
Double
getRefund_fee
()
{
return
refund_fee
;
}
public
void
setRefund_fee
(
Double
refund_fee
)
{
this
.
refund_fee
=
refund_fee
;
}
public
Integer
getOrder_type
()
{
return
order_type
;
}
public
void
setOrder_type
(
Integer
order_type
)
{
this
.
order_type
=
order_type
;
}
public
String
getSub_order_type
()
{
return
sub_order_type
;
}
public
void
setSub_order_type
(
String
sub_order_type
)
{
this
.
sub_order_type
=
sub_order_type
;
}
public
String
getOrder_time
()
{
return
order_time
;
}
public
void
setOrder_time
(
String
order_time
)
{
this
.
order_time
=
order_time
;
}
public
String
getProduct_code
()
{
return
product_code
;
}
public
void
setProduct_code
(
String
product_code
)
{
this
.
product_code
=
product_code
;
}
public
String
getProduct_name
()
{
return
product_name
;
}
public
void
setProduct_name
(
String
product_name
)
{
this
.
product_name
=
product_name
;
}
public
String
getPlay_date
()
{
return
play_date
;
}
public
void
setPlay_date
(
String
play_date
)
{
this
.
play_date
=
play_date
;
}
public
String
getUser_id
()
{
return
user_id
;
}
public
void
setUser_id
(
String
user_id
)
{
this
.
user_id
=
user_id
;
}
public
String
getMerchant_id
()
{
return
merchant_id
;
}
public
void
setMerchant_id
(
String
merchant_id
)
{
this
.
merchant_id
=
merchant_id
;
}
public
String
getMerchant_name
()
{
return
merchant_name
;
}
public
void
setMerchant_name
(
String
merchant_name
)
{
this
.
merchant_name
=
merchant_name
;
}
public
String
getTicket_phone
()
{
return
ticket_phone
;
}
public
void
setTicket_phone
(
String
ticket_phone
)
{
this
.
ticket_phone
=
ticket_phone
;
}
}
src/main/java/com/pangding/web/authority/vo/TyyOrderbackVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
;
import
com.yanzuoguang.dao.TableAnnotation
;
/**
* @Author zhangjinyao
* @create 2019/7/7 20:05
*/
@TableAnnotation
(
"t_orderback"
)
public
class
TyyOrderbackVo
{
private
String
id
;
private
String
uid
;
/**
* 订单中用户名称
*/
private
String
uname
;
/**
* 退票申请时间
*/
private
String
applytime
;
/**
* 辅助码
*/
private
String
auxiliarycode
;
/**
* 订单编号,与票速通一致
*/
private
String
ordersn
;
/**
* 退票数量,默认1张
*/
private
Integer
refundnum
;
/**
* 票速通退票审核码
*/
private
String
auditnum
;
/**
* 票速通退票审核状态(0.处理中,1成功 2.失败)
*/
private
String
status
;
/**
* 备注
*/
private
String
remarks
;
/**
* 微信商户退款单号/银联商户退款单号
*/
private
String
refundno
;
/**
* 银联退款流量号queryId/微信退款单号refund_id
*/
private
String
queryid
;
/**
* 受理状态(0:受理未通过 1:退货/退款已受理; 0:退货/退款确认中)
*/
private
String
acceptancestate
;
/**
* 受理人
*/
private
String
acceptanceuser
;
/**
* 备注
*/
private
String
acceptancedesc
;
/**
* 受理时间
*/
private
String
acceptancetime
;
/**
* 审核状态(1:通过; -1未通过; 0:未审核)
*/
private
String
checkstate
;
/**
* 审核人
*/
private
String
checkuser
;
/**
* 审核时间
*/
private
String
checktime
;
/**
* 审核说明
*/
private
String
checkdesc
;
/**
* 是否退款(1:已退款; 0:未退款,2退款中 3.退款失败)
*/
private
String
refundstatus
;
/**
* 退款说明
*/
private
String
refunddesc
;
/**
* 退款人
*/
private
String
refunduser
;
/**
* 退款时间
*/
private
String
refundtime
;
/**
* 景区退款手续费,包含在退款金额中
*/
private
Double
refundPoundage
;
/**
* 平台退款金额,包含在退款金额中,会自动计算,计算完成时会更改订单状态
*/
private
Double
refundFee
;
/**
* 退款金额
*/
private
Double
receiveMoney
;
/**
* 退款理由,
*/
private
String
refundReason
;
/**
* 商家退款成本
*/
private
Double
refundMoney
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getUid
()
{
return
uid
;
}
public
void
setUid
(
String
uid
)
{
this
.
uid
=
uid
;
}
public
String
getUname
()
{
return
uname
;
}
public
void
setUname
(
String
uname
)
{
this
.
uname
=
uname
;
}
public
String
getApplytime
()
{
return
applytime
;
}
public
void
setApplytime
(
String
applytime
)
{
this
.
applytime
=
applytime
;
}
public
String
getAuxiliarycode
()
{
return
auxiliarycode
;
}
public
void
setAuxiliarycode
(
String
auxiliarycode
)
{
this
.
auxiliarycode
=
auxiliarycode
;
}
public
String
getOrdersn
()
{
return
ordersn
;
}
public
void
setOrdersn
(
String
ordersn
)
{
this
.
ordersn
=
ordersn
;
}
public
Integer
getRefundnum
()
{
return
refundnum
;
}
public
void
setRefundnum
(
Integer
refundnum
)
{
this
.
refundnum
=
refundnum
;
}
public
String
getAuditnum
()
{
return
auditnum
;
}
public
void
setAuditnum
(
String
auditnum
)
{
this
.
auditnum
=
auditnum
;
}
public
String
getStatus
()
{
return
status
;
}
public
void
setStatus
(
String
status
)
{
this
.
status
=
status
;
}
public
String
getRemarks
()
{
return
remarks
;
}
public
void
setRemarks
(
String
remarks
)
{
this
.
remarks
=
remarks
;
}
public
String
getRefundno
()
{
return
refundno
;
}
public
void
setRefundno
(
String
refundno
)
{
this
.
refundno
=
refundno
;
}
public
String
getQueryid
()
{
return
queryid
;
}
public
void
setQueryid
(
String
queryid
)
{
this
.
queryid
=
queryid
;
}
public
String
getAcceptancestate
()
{
return
acceptancestate
;
}
public
void
setAcceptancestate
(
String
acceptancestate
)
{
this
.
acceptancestate
=
acceptancestate
;
}
public
String
getAcceptanceuser
()
{
return
acceptanceuser
;
}
public
void
setAcceptanceuser
(
String
acceptanceuser
)
{
this
.
acceptanceuser
=
acceptanceuser
;
}
public
String
getAcceptancedesc
()
{
return
acceptancedesc
;
}
public
void
setAcceptancedesc
(
String
acceptancedesc
)
{
this
.
acceptancedesc
=
acceptancedesc
;
}
public
String
getAcceptancetime
()
{
return
acceptancetime
;
}
public
void
setAcceptancetime
(
String
acceptancetime
)
{
this
.
acceptancetime
=
acceptancetime
;
}
public
String
getCheckstate
()
{
return
checkstate
;
}
public
void
setCheckstate
(
String
checkstate
)
{
this
.
checkstate
=
checkstate
;
}
public
String
getCheckuser
()
{
return
checkuser
;
}
public
void
setCheckuser
(
String
checkuser
)
{
this
.
checkuser
=
checkuser
;
}
public
String
getChecktime
()
{
return
checktime
;
}
public
void
setChecktime
(
String
checktime
)
{
this
.
checktime
=
checktime
;
}
public
String
getCheckdesc
()
{
return
checkdesc
;
}
public
void
setCheckdesc
(
String
checkdesc
)
{
this
.
checkdesc
=
checkdesc
;
}
public
String
getRefundstatus
()
{
return
refundstatus
;
}
public
void
setRefundstatus
(
String
refundstatus
)
{
this
.
refundstatus
=
refundstatus
;
}
public
String
getRefunddesc
()
{
return
refunddesc
;
}
public
void
setRefunddesc
(
String
refunddesc
)
{
this
.
refunddesc
=
refunddesc
;
}
public
String
getRefunduser
()
{
return
refunduser
;
}
public
void
setRefunduser
(
String
refunduser
)
{
this
.
refunduser
=
refunduser
;
}
public
String
getRefundtime
()
{
return
refundtime
;
}
public
void
setRefundtime
(
String
refundtime
)
{
this
.
refundtime
=
refundtime
;
}
public
Double
getRefundPoundage
()
{
return
refundPoundage
;
}
public
void
setRefundPoundage
(
Double
refundPoundage
)
{
this
.
refundPoundage
=
refundPoundage
;
}
public
Double
getRefundFee
()
{
return
refundFee
;
}
public
void
setRefundFee
(
Double
refundFee
)
{
this
.
refundFee
=
refundFee
;
}
public
Double
getReceiveMoney
()
{
return
receiveMoney
;
}
public
void
setReceiveMoney
(
Double
receiveMoney
)
{
this
.
receiveMoney
=
receiveMoney
;
}
public
String
getRefundReason
()
{
return
refundReason
;
}
public
void
setRefundReason
(
String
refundReason
)
{
this
.
refundReason
=
refundReason
;
}
public
Double
getRefundMoney
()
{
return
refundMoney
;
}
public
void
setRefundMoney
(
Double
refundMoney
)
{
this
.
refundMoney
=
refundMoney
;
}
}
src/main/java/com/pangding/web/authority/vo/TyyOrderdetailsVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
;
import
com.yanzuoguang.dao.TableAnnotation
;
/**
* @Author zhangjinyao
* @create 2019/7/7 20:02
*/
@TableAnnotation
(
"t_orderdetails"
)
public
class
TyyOrderdetailsVo
{
private
String
id
;
/**
* 订单编号,与票速通一致
*/
private
String
ordersn
;
/**
* 辅助码
*/
private
String
auxiliarycode
;
/**
* 景区名称
*/
private
String
scenicspotname
;
/**
* 景区产品名称
*/
private
String
productname
;
/**
* 验票时间
*/
private
String
checktime
;
/**
* 退票退款时间
*/
private
String
refundtime
;
/**
* 使用状态 0:未使用 1:已使用 2:已退
*/
private
String
codestatus
;
/**
* 票速通返回的linkid
*/
private
String
linkid
;
/**
* 去哪儿二维码图片
*/
private
String
picUrl
;
/**
* 是否为去哪儿码
*/
private
String
isQunarCode
;
/**
* 是否评论 0,未评论 1,已评论
*/
private
String
iscomment
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getOrdersn
()
{
return
ordersn
;
}
public
void
setOrdersn
(
String
ordersn
)
{
this
.
ordersn
=
ordersn
;
}
public
String
getAuxiliarycode
()
{
return
auxiliarycode
;
}
public
void
setAuxiliarycode
(
String
auxiliarycode
)
{
this
.
auxiliarycode
=
auxiliarycode
;
}
public
String
getScenicspotname
()
{
return
scenicspotname
;
}
public
void
setScenicspotname
(
String
scenicspotname
)
{
this
.
scenicspotname
=
scenicspotname
;
}
public
String
getProductname
()
{
return
productname
;
}
public
void
setProductname
(
String
productname
)
{
this
.
productname
=
productname
;
}
public
String
getChecktime
()
{
return
checktime
;
}
public
void
setChecktime
(
String
checktime
)
{
this
.
checktime
=
checktime
;
}
public
String
getRefundtime
()
{
return
refundtime
;
}
public
void
setRefundtime
(
String
refundtime
)
{
this
.
refundtime
=
refundtime
;
}
public
String
getCodestatus
()
{
return
codestatus
;
}
public
void
setCodestatus
(
String
codestatus
)
{
this
.
codestatus
=
codestatus
;
}
public
String
getLinkid
()
{
return
linkid
;
}
public
void
setLinkid
(
String
linkid
)
{
this
.
linkid
=
linkid
;
}
public
String
getPicUrl
()
{
return
picUrl
;
}
public
void
setPicUrl
(
String
picUrl
)
{
this
.
picUrl
=
picUrl
;
}
public
String
getIsQunarCode
()
{
return
isQunarCode
;
}
public
void
setIsQunarCode
(
String
isQunarCode
)
{
this
.
isQunarCode
=
isQunarCode
;
}
public
String
getIscomment
()
{
return
iscomment
;
}
public
void
setIscomment
(
String
iscomment
)
{
this
.
iscomment
=
iscomment
;
}
}
src/main/java/com/pangding/web/authority/vo/TyyOrdersVo.java
0 → 100644
View file @
8ed98cec
This diff is collapsed.
Click to expand it.
src/main/java/com/pangding/web/authority/vo/TyyTouristVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
;
import
com.yanzuoguang.dao.TableAnnotation
;
/**
* @Author zhangjinyao
* @create 2019/7/8 16:34
*/
@TableAnnotation
(
"pd_tourist"
)
public
class
TyyTouristVo
{
private
String
id
;
private
String
ordersn
;
private
String
name
;
private
String
phone
;
private
String
card_type
;
private
String
idcard
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getOrdersn
()
{
return
ordersn
;
}
public
void
setOrdersn
(
String
ordersn
)
{
this
.
ordersn
=
ordersn
;
}
public
String
getName
()
{
return
name
;
}
public
void
setName
(
String
name
)
{
this
.
name
=
name
;
}
public
String
getPhone
()
{
return
phone
;
}
public
void
setPhone
(
String
phone
)
{
this
.
phone
=
phone
;
}
public
String
getCard_type
()
{
return
card_type
;
}
public
void
setCard_type
(
String
card_type
)
{
this
.
card_type
=
card_type
;
}
public
String
getIdcard
()
{
return
idcard
;
}
public
void
setIdcard
(
String
idcard
)
{
this
.
idcard
=
idcard
;
}
}
src/main/java/com/pangding/web/authority/vo/reqvo/DiscountDetailGetReqVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
.
reqvo
;
/**
* @Author zhangjinyao
* @create 2019/7/8 17:00
*/
public
class
DiscountDetailGetReqVo
{
private
String
order_id
;
public
String
getOrder_id
()
{
return
order_id
;
}
public
void
setOrder_id
(
String
order_id
)
{
this
.
order_id
=
order_id
;
}
}
src/main/java/com/pangding/web/authority/vo/reqvo/OrderExtendGetReqVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
.
reqvo
;
/**
* @Author zhangjinyao
* @create 2019/7/7 21:38
*/
public
class
OrderExtendGetReqVo
{
private
String
order_id
;
private
String
title
;
public
String
getTitle
()
{
return
title
;
}
public
void
setTitle
(
String
title
)
{
this
.
title
=
title
;
}
public
String
getOrder_id
()
{
return
order_id
;
}
public
void
setOrder_id
(
String
order_id
)
{
this
.
order_id
=
order_id
;
}
}
src/main/java/com/pangding/web/authority/vo/reqvo/OrderGetReqVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
.
reqvo
;
/**
* @Author zhangjinyao
* @create 2019/7/7 21:33
*/
public
class
OrderGetReqVo
{
private
String
id
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
}
src/main/java/com/pangding/web/authority/vo/reqvo/OrderRefundGetReqVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
.
reqvo
;
/**
* @Author zhangjinyao
* @create 2019/7/7 21:47
*/
public
class
OrderRefundGetReqVo
{
private
String
id
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
}
src/main/java/com/pangding/web/authority/vo/reqvo/OrderStatusGetReqVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
.
reqvo
;
/**
* @Author zhangjinyao
* @create 2019/7/7 22:05
*/
public
class
OrderStatusGetReqVo
{
private
String
id
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
}
src/main/java/com/pangding/web/authority/vo/reqvo/OrderTicketDetailGetReqVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
.
reqvo
;
/**
* @Author zhangjinyao
* @create 2019/7/7 22:14
*/
public
class
OrderTicketDetailGetReqVo
{
private
String
order_id
;
public
String
getOrder_id
()
{
return
order_id
;
}
public
void
setOrder_id
(
String
order_id
)
{
this
.
order_id
=
order_id
;
}
}
src/main/java/com/pangding/web/authority/vo/reqvo/OrderTouristGetReqVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
.
reqvo
;
/**
* @Author zhangjinyao
* @create 2019/7/8 16:47
*/
public
class
OrderTouristGetReqVo
{
private
String
order_id
;
public
String
getOrder_id
()
{
return
order_id
;
}
public
void
setOrder_id
(
String
order_id
)
{
this
.
order_id
=
order_id
;
}
}
src/main/java/com/pangding/web/authority/vo/resvo/OrderResVo.java
0 → 100644
View file @
8ed98cec
package
com
.
pangding
.
web
.
authority
.
vo
.
resvo
;
import
com.pangding.web.authority.vo.TyyOrderbackVo
;
import
com.pangding.web.authority.vo.TyyOrderdetailsVo
;
import
com.pangding.web.authority.vo.TyyOrdersVo
;
import
com.pangding.web.authority.vo.TyyTouristVo
;
import
java.util.List
;
/**
* @Author zhangjinyao
* @create 2019/7/7 20:40
*/
public
class
OrderResVo
{
private
String
reqId
;
private
TyyOrdersVo
tyyOrdersVo
;
private
List
<
TyyOrderbackVo
>
tyyOrderbackVoList
;
private
TyyOrderdetailsVo
tyyOrderdetailsVo
;
private
TyyTouristVo
tyyTouristVo
;
public
TyyTouristVo
getTyyTouristVo
()
{
return
tyyTouristVo
;
}
public
void
setTyyTouristVo
(
TyyTouristVo
tyyTouristVo
)
{
this
.
tyyTouristVo
=
tyyTouristVo
;
}
public
String
getReqId
()
{
return
reqId
;
}
public
void
setReqId
(
String
reqId
)
{
this
.
reqId
=
reqId
;
}
public
TyyOrdersVo
getTyyOrdersVo
()
{
return
tyyOrdersVo
;
}
public
void
setTyyOrdersVo
(
TyyOrdersVo
tyyOrdersVo
)
{
this
.
tyyOrdersVo
=
tyyOrdersVo
;
}
public
List
<
TyyOrderbackVo
>
getTyyOrderbackVoList
()
{
return
tyyOrderbackVoList
;
}
public
void
setTyyOrderbackVoList
(
List
<
TyyOrderbackVo
>
tyyOrderbackVoList
)
{
this
.
tyyOrderbackVoList
=
tyyOrderbackVoList
;
}
public
TyyOrderdetailsVo
getTyyOrderdetailsVo
()
{
return
tyyOrderdetailsVo
;
}
public
void
setTyyOrderdetailsVo
(
TyyOrderdetailsVo
tyyOrderdetailsVo
)
{
this
.
tyyOrderdetailsVo
=
tyyOrderdetailsVo
;
}
}
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