Commit 8ed98cec authored by zjy's avatar zjy

user/role/tright 7.9

parent a17389b5
...@@ -3,6 +3,7 @@ package com.pangding.web.authority.controller; ...@@ -3,6 +3,7 @@ package com.pangding.web.authority.controller;
import com.pangding.web.authority.service.DataService; import com.pangding.web.authority.service.DataService;
import com.pangding.web.authority.vo.reqvo.SaveDataReqVo; import com.pangding.web.authority.vo.reqvo.SaveDataReqVo;
import com.pangding.web.authority.vo.resvo.FindResVo; import com.pangding.web.authority.vo.resvo.FindResVo;
import com.pangding.web.authority.vo.resvo.OrderResVo;
import com.yanzuoguang.util.vo.ResponseResult; import com.yanzuoguang.util.vo.ResponseResult;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType; import org.springframework.http.MediaType;
...@@ -26,4 +27,10 @@ public class DataController { ...@@ -26,4 +27,10 @@ public class DataController {
dataServiceImpl.save(reqVo); dataServiceImpl.save(reqVo);
return new ResponseResult(); return new ResponseResult();
} }
@PostMapping(value = "/saveOrderStepTwo",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
public ResponseResult saveOrderStepTwo(@RequestBody OrderResVo reqVo){
dataServiceImpl.saveOrderStepTwo(reqVo);
return new ResponseResult();
}
} }
package com.pangding.web.authority.dao;
import com.yanzuoguang.dao.BaseDao;
/**
* @Author zhangjinyao
* @create 2019/7/8 17:01
*/
public interface DiscountDetailDao extends BaseDao {
}
package com.pangding.web.authority.dao;
import com.yanzuoguang.dao.BaseDao;
/**
* @Author zhangjinyao
* @create 2019/7/7 21:30
*/
public interface OrderDao extends BaseDao {
}
package com.pangding.web.authority.dao;
import com.yanzuoguang.dao.BaseDao;
/**
* @Author zhangjinyao
* @create 2019/7/7 21:39
*/
public interface OrderExtendDao extends BaseDao {
}
package com.pangding.web.authority.dao;
import com.yanzuoguang.dao.BaseDao;
/**
* @Author zhangjinyao
* @create 2019/7/7 21:48
*/
public interface OrderRefundDao extends BaseDao {
}
package com.pangding.web.authority.dao;
import com.yanzuoguang.dao.BaseDao;
/**
* @Author zhangjinyao
* @create 2019/7/7 22:06
*/
public interface OrderStatusDao extends BaseDao {
}
package com.pangding.web.authority.dao;
import com.yanzuoguang.dao.BaseDao;
/**
* @Author zhangjinyao
* @create 2019/7/7 22:15
*/
public interface OrderTicketDetailDao extends BaseDao {
}
package com.pangding.web.authority.dao;
import com.yanzuoguang.dao.BaseDao;
/**
* @Author zhangjinyao
* @create 2019/7/8 16:53
*/
public interface OrderTouristDao extends BaseDao {
}
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);
}
}
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);
}
}
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);
}
}
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);
}
}
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);
}
}
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);
}
}
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);
}
}
package com.pangding.web.authority.service; package com.pangding.web.authority.service;
import com.pangding.web.authority.vo.resvo.FindResVo; 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; ...@@ -9,4 +10,6 @@ import com.pangding.web.authority.vo.resvo.FindResVo;
*/ */
public interface DataService { public interface DataService {
void save(FindResVo reqVo); void save(FindResVo reqVo);
void saveOrderStepTwo(OrderResVo reqVo);
} }
...@@ -8,6 +8,7 @@ import com.pangding.web.authority.util.RoleConstant; ...@@ -8,6 +8,7 @@ import com.pangding.web.authority.util.RoleConstant;
import com.pangding.web.authority.vo.*; import com.pangding.web.authority.vo.*;
import com.pangding.web.authority.vo.reqvo.*; import com.pangding.web.authority.vo.reqvo.*;
import com.pangding.web.authority.vo.resvo.FindResVo; import com.pangding.web.authority.vo.resvo.FindResVo;
import com.pangding.web.authority.vo.resvo.OrderResVo;
import com.yanzuoguang.util.exception.CodeException; import com.yanzuoguang.util.exception.CodeException;
import com.yanzuoguang.util.helper.StringHelper; import com.yanzuoguang.util.helper.StringHelper;
import com.yanzuoguang.util.vo.ResponseResult; import com.yanzuoguang.util.vo.ResponseResult;
...@@ -36,6 +37,20 @@ public class DataServiceImpl implements DataService { ...@@ -36,6 +37,20 @@ public class DataServiceImpl implements DataService {
private CompanyBankCardDao companyBankCardDaoImpl; private CompanyBankCardDao companyBankCardDaoImpl;
@Autowired @Autowired
private UserRoleDao userRoleDaoImpl; private UserRoleDao userRoleDaoImpl;
@Autowired
private OrderDao orderDaoImpl;
@Autowired
private OrderExtendDao orderExtendDaoImpl;
@Autowired
private OrderRefundDao orderRefundDaoImpl;
@Autowired
private OrderStatusDao orderStatusDaoImpl;
@Autowired
private OrderTicketDetailDao orderTicketDetailDao;
@Autowired
private OrderTouristDao orderTouristDao;
@Autowired
private DiscountDetailDao discountDetailDao;
@Override @Override
@Transactional(rollbackFor = Exception.class) @Transactional(rollbackFor = Exception.class)
...@@ -166,4 +181,183 @@ public class DataServiceImpl implements DataService { ...@@ -166,4 +181,183 @@ public class DataServiceImpl implements DataService {
} }
} }
} }
@Override
@Transactional(rollbackFor = Exception.class)
public void saveOrderStepTwo(OrderResVo reqVo) {
TyyOrdersVo tyyOrdersVo = reqVo.getTyyOrdersVo();
List<TyyOrderbackVo> tyyOrderbackVoList = reqVo.getTyyOrderbackVoList();
TyyOrderdetailsVo tyyOrderdetailsVo = reqVo.getTyyOrderdetailsVo();
TyyTouristVo tyyTouristVo = reqVo.getTyyTouristVo();
/*OrderVo表*/
int refundNum = 0;
double refundFee = 0d;
double pdRefundMoney = 0d;
double refundMoney = 0d;
for (TyyOrderbackVo tyyOrderbackVo:tyyOrderbackVoList) {
refundNum += tyyOrderbackVo.getRefundnum();
refundFee += tyyOrderbackVo.getRefundFee();
pdRefundMoney += tyyOrderbackVo.getReceiveMoney();
refundMoney += tyyOrderbackVo.getRefundMoney();
}
OrderVo orderVo = new OrderVo();
orderVo.setId(tyyOrdersVo.getOrdersn());
orderVo.setProduct_name(tyyOrdersVo.getConsignee());
orderVo.setMerchant_name(tyyOrdersVo.getScenicspotname());
orderVo.setProduct_code(tyyOrdersVo.getProductsn());
orderVo.setRefund_num(refundNum);
orderVo.setOrder_num(tyyOrdersVo.getBuynum());
orderVo.setUnit_price(tyyOrdersVo.getPrice());
orderVo.setTotal_money(tyyOrdersVo.getTotal());
orderVo.setPlay_date(tyyOrdersVo.getTraveldate());
orderVo.setOrder_time(tyyOrdersVo.getOrdertime());
orderVo.setUser_id(tyyOrdersVo.getMemberid());
orderVo.setTicket_phone(tyyOrdersVo.getUsertel());
orderVo.setCost_price(tyyOrdersVo.getPurchaseprice());
orderVo.setCost_total_money(tyyOrdersVo.getPurchaseprice()*tyyOrdersVo.getBuynum());
orderVo.setOrder_money(orderVo.getCost_total_money()-tyyOrdersVo.getDiscountprice());
orderVo.setRefund_fee(refundFee);
orderVo.setPd_refund_money(pdRefundMoney);
orderVo.setDiscount_money(tyyOrdersVo.getDiscountprice());
orderVo.setPd_discount_money(tyyOrdersVo.getDiscountprice());
orderVo.setRefund_money(refundMoney);
orderVo.setSub_order_type(tyyOrdersVo.getFieldTicket());
orderVo.setPd_order_money(tyyOrdersVo.getRealprice());
orderVo.setArea_code(tyyOrdersVo.getSight_spot_code());
orderVo.setOrder_type(1);
/*若该id存在则跳过,不存在则新增*/
OrderGetReqVo orderGetReqVo = new OrderGetReqVo();
orderGetReqVo.setId(orderVo.getId());
OrderVo orderVo1 = orderDaoImpl.load(orderGetReqVo,OrderVo.class);
if (null == orderVo1){
orderDaoImpl.create(orderVo);
}
/*OrderExtendVo表*/
/*游玩地址*/
OrderExtendVo orderExtendVoAddress = new OrderExtendVo();
orderExtendVoAddress.setId(StringHelper.getNewID());
orderExtendVoAddress.setOrder_id(tyyOrdersVo.getOrdersn());
orderExtendVoAddress.setTitle("游玩地址");
orderExtendVoAddress.setContent(tyyOrdersVo.getPlay_address());
OrderExtendGetReqVo orderExtendGetReqVo = new OrderExtendGetReqVo();
orderExtendGetReqVo.setOrder_id(orderExtendVoAddress.getOrder_id());
orderExtendGetReqVo.setTitle(orderExtendVoAddress.getTitle());
/*若该order_id存在则跳过,不存在则新增*/
OrderExtendVo orderExtendVo1 = orderExtendDaoImpl.load(orderExtendGetReqVo,OrderExtendVo.class);
if (null == orderExtendVo1){
orderExtendDaoImpl.create(orderExtendVoAddress);
}
/*OrderExtendVo表*/
/*游玩时间*/
OrderExtendVo orderExtendVoTime = new OrderExtendVo();
orderExtendVoTime.setId(StringHelper.getNewID());
orderExtendVoTime.setOrder_id(tyyOrdersVo.getOrdersn());
orderExtendVoTime.setTitle("游玩时间");
orderExtendVoTime.setContent(tyyOrdersVo.getPlay_time());
OrderExtendGetReqVo orderExtendGetReqVo1 = new OrderExtendGetReqVo();
orderExtendGetReqVo1.setOrder_id(orderExtendVoTime.getOrder_id());
orderExtendGetReqVo1.setTitle(orderExtendVoTime.getTitle());
/*若该order_id存在则跳过,不存在则新增*/
OrderExtendVo orderExtendVo2 = orderExtendDaoImpl.load(orderExtendGetReqVo,OrderExtendVo.class);
if (null == orderExtendVo2){
orderExtendDaoImpl.create(orderExtendVoTime);
}
/*OrderRefundVo表*/
for (TyyOrderbackVo tyyOrderbackVo:tyyOrderbackVoList) {
OrderRefundVo orderRefundVo = new OrderRefundVo();
orderRefundVo.setId(tyyOrderbackVo.getId());
orderRefundVo.setOrder_id(tyyOrderbackVo.getOrdersn());
orderRefundVo.setOperator(tyyOrderbackVo.getAcceptanceuser());
orderRefundVo.setRefund_status(tyyOrderbackVo.getRefundstatus());
orderRefundVo.setRefund_date(tyyOrderbackVo.getRefundtime());
orderRefundVo.setRefund_fee(tyyOrderbackVo.getRefundFee());
orderRefundVo.setRefund_amount(tyyOrderbackVo.getReceiveMoney());
orderRefundVo.setRefund_reason(tyyOrderbackVo.getRefundReason());
/*若该id存在则跳过,不存在则新增*/
OrderRefundGetReqVo orderRefundGetReqVo = new OrderRefundGetReqVo();
orderRefundGetReqVo.setId(orderRefundVo.getId());
OrderRefundVo orderRefundVo1 = orderRefundDaoImpl.load(orderRefundGetReqVo,OrderRefundVo.class);
if (null == orderRefundVo1){
orderRefundDaoImpl.create(orderRefundVo);
}
}
/*OrderStatusVo表*/
OrderStatusVo orderStatusVo = new OrderStatusVo();
orderStatusVo.setId(tyyOrdersVo.getOrdersn());
orderStatusVo.setPay_type(tyyOrdersVo.getPaytype());
orderStatusVo.setPayment_time(tyyOrdersVo.getPaymenttime());
orderStatusVo.setPayment_status(tyyOrdersVo.getPaystatus());
if ("1".equals(tyyOrdersVo.getStatus())){
orderStatusVo.setOrder_status("2");
}else if("3".equals(tyyOrdersVo.getStatus()) && "0".equals(tyyOrdersVo.getPaystatus())){
orderStatusVo.setOrder_status("0");
}else if("3".equals(tyyOrdersVo.getStatus()) && "1".equals(tyyOrdersVo.getPaystatus())){
orderStatusVo.setOrder_status("1");
}
orderStatusVo.setThird_order_id(tyyOrdersVo.getPiaostorderid());
orderStatusVo.setProduct_company_id(tyyOrdersVo.getEnterpriseid());
orderStatusVo.setPayment_id(tyyOrdersVo.getTongl_third_ordersn());
orderStatusVo.setIs_summarize(tyyOrdersVo.getEmancipated());
orderStatusVo.setSummarize_time(tyyOrdersVo.getEmancipated_date());
orderStatusVo.setDivide_status(tyyOrdersVo.getProfit_checked());
orderStatusVo.setDivide_time(tyyOrdersVo.getProfit_checked_date());
orderStatusVo.setAgent_company_id(tyyOrdersVo.getFxsid());
orderStatusVo.setIs_delete(tyyOrdersVo.getIsdelete());
orderStatusVo.setPay_tonglian_id(tyyOrdersVo.getTongl_ordersn());
/*若该id存在则跳过,不存在则新增*/
OrderStatusGetReqVo orderStatusGetReqVo = new OrderStatusGetReqVo();
orderStatusGetReqVo.setId(orderStatusVo.getId());
OrderStatusVo orderStatusVo1 = orderStatusDaoImpl.load(orderStatusGetReqVo,OrderStatusVo.class);
if (null == orderStatusVo1){
orderStatusDaoImpl.create(orderStatusVo);
}
/*OrderTicketDetailVo表*/
OrderTicketDetailVo orderTicketDetailVo = new OrderTicketDetailVo();
orderTicketDetailVo.setId(StringHelper.getNewID());
orderTicketDetailVo.setVerify_code(tyyOrderdetailsVo.getAuxiliarycode());
orderTicketDetailVo.setOrder_id(tyyOrdersVo.getOrdersn());
orderTicketDetailVo.setTicket_status(tyyOrderdetailsVo.getCodestatus());
if ("1".equals(tyyOrderdetailsVo.getCodestatus())){
orderTicketDetailVo.setTime(tyyOrderdetailsVo.getChecktime());
}else if("2".equals(tyyOrderdetailsVo.getCodestatus())){
orderTicketDetailVo.setTime(tyyOrderdetailsVo.getRefundtime());
}
orderTicketDetailVo.setTicket_code(tyyOrderdetailsVo.getLinkid());
orderTicketDetailVo.setCode_url(tyyOrderdetailsVo.getPicUrl());
/*若该order_id存在则跳过,不存在则新增*/
OrderTicketDetailGetReqVo orderTicketDetailGetReqVo = new OrderTicketDetailGetReqVo();
orderTicketDetailGetReqVo.setOrder_id(orderTicketDetailVo.getOrder_id());
OrderTicketDetailVo orderTicketDetailVo1 = orderTicketDetailDao.load(orderTicketDetailGetReqVo,OrderTicketDetailVo.class);
if (null == orderTicketDetailVo1){
orderTicketDetailDao.create(orderTicketDetailVo);
}
/*OrderTouristVo表*/
OrderTouristVo orderTouristVo = new OrderTouristVo();
orderTouristVo.setId(StringHelper.getNewID());
orderTouristVo.setOrder_id(tyyTouristVo.getOrdersn());
orderTouristVo.setName(tyyTouristVo.getName());
orderTouristVo.setPhone(tyyTouristVo.getPhone());
orderTouristVo.setCredential_type(tyyTouristVo.getCard_type());
orderTouristVo.setCredential_number(tyyTouristVo.getIdcard());
/*若该order_id存在则跳过,不存在则新增*/
OrderTouristGetReqVo orderTouristGetReqVo = new OrderTouristGetReqVo();
orderTouristGetReqVo.setOrder_id(orderTouristVo.getOrder_id());
OrderTouristVo orderTouristVo1 = orderTouristDao.load(orderTouristGetReqVo,OrderTouristVo.class);
if (null == orderTouristVo1){
orderTouristDao.create(orderTouristVo);
}
/*DiscountDetailVo表*/
DiscountDetailVo discountDetailVo = new DiscountDetailVo();
discountDetailVo.setId(StringHelper.getNewID());
discountDetailVo.setOrder_id(tyyOrdersVo.getOrdersn());
discountDetailVo.setDiscount_money(tyyOrdersVo.getDiscountprice());
/*若该order_id存在则跳过,不存在则新增*/
DiscountDetailGetReqVo discountDetailGetReqVo = new DiscountDetailGetReqVo();
discountDetailGetReqVo.setOrder_id(discountDetailVo.getOrder_id());
DiscountDetailVo discountDetailVo1 = discountDetailDao.load(discountDetailGetReqVo,DiscountDetailVo.class);
if (null == discountDetailVo1){
discountDetailDao.create(discountDetailVo);
}
}
} }
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
package com.pangding.web.authority.vo;
import com.yanzuoguang.dao.TableAnnotation;
/**
* @Author zhangjinyao
* @create 2019/7/7 19:51
*/
@TableAnnotation("t_orders")
public class TyyOrdersVo {
/**
* 单订编号,与票速通订单编号一致
*/
private String id;
/**
* 景区产品名称
*/
private String ordersn;
/**
* 景区名称
*/
private String consignee;
/**
* 票速通对应产品编号
*/
private String scenicspotname;
/**
* 产品ID
*/
private String productsn;
/**
* 动活套餐ID,多个用逗号隔开
*/
private String goodid;
/**
* 订单类型,散客或团购
*/
private String packageids;
/**
* 购买数量
*/
private String phoneortel;
/**
* 单价
*/
private Integer buynum;
/**
* 合计金额
*/
private Double price;
/**
* 游玩日期
*/
private Double total;
/**
* 支付类型-默认微信支付
*/
private String traveldate;
/**
* 支付时间
*/
private String paytype;
/**
* 支付状态0:未支付;1:已支付
*/
private String paymenttime;
/**
* 银联支付通知交易流水号queryId/微信支付通知订单号transaction_id
*/
private String paystatus;
/**
* 备注
*/
private String queryid;
/**
* 订单状态[票速通订单状态 1:成功 2:人工确认 3:未支付]
*/
private String remarks;
/**
* 票速通订单编号
*/
private String status;
/**
* 客户信息--OPENID
*/
private String piaostorderid;
/**
* 景区(商家)ID
*/
private String memberid;
/**
* 用户名称
*/
private String enterpriseid;
/**
* 手机号码
*/
private String usercontact;
/**
* 产品采购价
*/
private String usertel;
/**
* 是否扎帐
*/
private String ordertime;
/**
* 扎帐日期
*/
private Double purchaseprice;
/**
* 抵扣金额
*/
private String checked;
/**
* 用户身份证号
*/
private String checked_date;
/**
* 手机所属地
*/
private Double youbi;
/**
* 是否被统计 1为统计
*/
private String idcard;
/**
* 是否统计分销商 1为统计
*/
private String tel_province;
/**
* 是否现场购票订单 0 不是 1 是
*/
private Integer is_tongji;
/**
* 使用截止日期
*/
private Integer is_tongji_fxs;
/**
* 退票截止日期
*/
private String fieldTicket;
/**
* 支持退票,0表示不支持退票,1表示支持退票,默认0
*/
private String useTimeRangeEnd;
/**
* 退款手续费收取类型,0按订单,1按张数
*/
private String refundRangeEnd;
/**
* 退款手续费(单位是元)
*/
private String canRefund;
/**
* 是否能重发码
*/
private String refundPoundageType;
/**
* 网络购票,已进行汇总
*/
private Double refundPoundage;
/**
* 网络购票汇总日期
*/
private String isCanResend;
/**
* 产品场次
*/
private String emancipated;
/**
* 是否分润
*/
private String emancipated_date;
/**
* 分润时间
*/
private String changci;
/**
* 景区分销商ID
*/
private String profit_checked;
/**
* 是否是旧版分润数据,0就是新版,1是旧版
*/
private String profit_checked_date;
/**
* 是否删除 0 不删除 1 已删除
*/
private String fxsid;
/**
* 实际收款
*/
private Integer is_old;
/**
* 优惠金额
*/
private String isdelete;
/**
* 从哪个渠道买的票
*/
private Double realprice;
/**
* 收货地址
*/
private Double discountprice;
/**
* 景点编号
*/
private String qrcodesrc;
/**
* 是否补票 0 否 1是
*/
private String address;
/**
* 是否取号 0 不取号 1 取号
*/
private String sight_spot_code;
/**
* 通联状态 0 未处理 1 已代付, 2已退款
*/
private String isBupiao;
private String email;
private String play_address;
private String play_time;
private String is_fetch;
private String tongl_status;
private String tongl_third_ordersn;
private String tongl_ordersn;
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 getConsignee() {
return consignee;
}
public void setConsignee(String consignee) {
this.consignee = consignee;
}
public String getScenicspotname() {
return scenicspotname;
}
public void setScenicspotname(String scenicspotname) {
this.scenicspotname = scenicspotname;
}
public String getProductsn() {
return productsn;
}
public void setProductsn(String productsn) {
this.productsn = productsn;
}
public String getGoodid() {
return goodid;
}
public void setGoodid(String goodid) {
this.goodid = goodid;
}
public String getPackageids() {
return packageids;
}
public void setPackageids(String packageids) {
this.packageids = packageids;
}
public String getPhoneortel() {
return phoneortel;
}
public void setPhoneortel(String phoneortel) {
this.phoneortel = phoneortel;
}
public Integer getBuynum() {
return buynum;
}
public void setBuynum(Integer buynum) {
this.buynum = buynum;
}
public Double getPrice() {
return price;
}
public void setPrice(Double price) {
this.price = price;
}
public Double getTotal() {
return total;
}
public void setTotal(Double total) {
this.total = total;
}
public String getTraveldate() {
return traveldate;
}
public void setTraveldate(String traveldate) {
this.traveldate = traveldate;
}
public String getPaytype() {
return paytype;
}
public void setPaytype(String paytype) {
this.paytype = paytype;
}
public String getPaymenttime() {
return paymenttime;
}
public void setPaymenttime(String paymenttime) {
this.paymenttime = paymenttime;
}
public String getPaystatus() {
return paystatus;
}
public void setPaystatus(String paystatus) {
this.paystatus = paystatus;
}
public String getQueryid() {
return queryid;
}
public void setQueryid(String queryid) {
this.queryid = queryid;
}
public String getRemarks() {
return remarks;
}
public void setRemarks(String remarks) {
this.remarks = remarks;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getPiaostorderid() {
return piaostorderid;
}
public void setPiaostorderid(String piaostorderid) {
this.piaostorderid = piaostorderid;
}
public String getMemberid() {
return memberid;
}
public void setMemberid(String memberid) {
this.memberid = memberid;
}
public String getEnterpriseid() {
return enterpriseid;
}
public void setEnterpriseid(String enterpriseid) {
this.enterpriseid = enterpriseid;
}
public String getUsercontact() {
return usercontact;
}
public void setUsercontact(String usercontact) {
this.usercontact = usercontact;
}
public String getUsertel() {
return usertel;
}
public void setUsertel(String usertel) {
this.usertel = usertel;
}
public String getOrdertime() {
return ordertime;
}
public void setOrdertime(String ordertime) {
this.ordertime = ordertime;
}
public Double getPurchaseprice() {
return purchaseprice;
}
public void setPurchaseprice(Double purchaseprice) {
this.purchaseprice = purchaseprice;
}
public String getChecked() {
return checked;
}
public void setChecked(String checked) {
this.checked = checked;
}
public String getChecked_date() {
return checked_date;
}
public void setChecked_date(String checked_date) {
this.checked_date = checked_date;
}
public Double getYoubi() {
return youbi;
}
public void setYoubi(Double youbi) {
this.youbi = youbi;
}
public String getIdcard() {
return idcard;
}
public void setIdcard(String idcard) {
this.idcard = idcard;
}
public String getTel_province() {
return tel_province;
}
public void setTel_province(String tel_province) {
this.tel_province = tel_province;
}
public Integer getIs_tongji() {
return is_tongji;
}
public void setIs_tongji(Integer is_tongji) {
this.is_tongji = is_tongji;
}
public Integer getIs_tongji_fxs() {
return is_tongji_fxs;
}
public void setIs_tongji_fxs(Integer is_tongji_fxs) {
this.is_tongji_fxs = is_tongji_fxs;
}
public String getFieldTicket() {
return fieldTicket;
}
public void setFieldTicket(String fieldTicket) {
this.fieldTicket = fieldTicket;
}
public String getUseTimeRangeEnd() {
return useTimeRangeEnd;
}
public void setUseTimeRangeEnd(String useTimeRangeEnd) {
this.useTimeRangeEnd = useTimeRangeEnd;
}
public String getRefundRangeEnd() {
return refundRangeEnd;
}
public void setRefundRangeEnd(String refundRangeEnd) {
this.refundRangeEnd = refundRangeEnd;
}
public String getCanRefund() {
return canRefund;
}
public void setCanRefund(String canRefund) {
this.canRefund = canRefund;
}
public String getRefundPoundageType() {
return refundPoundageType;
}
public void setRefundPoundageType(String refundPoundageType) {
this.refundPoundageType = refundPoundageType;
}
public Double getRefundPoundage() {
return refundPoundage;
}
public void setRefundPoundage(Double refundPoundage) {
this.refundPoundage = refundPoundage;
}
public String getIsCanResend() {
return isCanResend;
}
public void setIsCanResend(String isCanResend) {
this.isCanResend = isCanResend;
}
public String getEmancipated() {
return emancipated;
}
public void setEmancipated(String emancipated) {
this.emancipated = emancipated;
}
public String getEmancipated_date() {
return emancipated_date;
}
public void setEmancipated_date(String emancipated_date) {
this.emancipated_date = emancipated_date;
}
public String getChangci() {
return changci;
}
public void setChangci(String changci) {
this.changci = changci;
}
public String getProfit_checked() {
return profit_checked;
}
public void setProfit_checked(String profit_checked) {
this.profit_checked = profit_checked;
}
public String getProfit_checked_date() {
return profit_checked_date;
}
public void setProfit_checked_date(String profit_checked_date) {
this.profit_checked_date = profit_checked_date;
}
public String getFxsid() {
return fxsid;
}
public void setFxsid(String fxsid) {
this.fxsid = fxsid;
}
public Integer getIs_old() {
return is_old;
}
public void setIs_old(Integer is_old) {
this.is_old = is_old;
}
public String getIsdelete() {
return isdelete;
}
public void setIsdelete(String isdelete) {
this.isdelete = isdelete;
}
public Double getRealprice() {
return realprice;
}
public void setRealprice(Double realprice) {
this.realprice = realprice;
}
public Double getDiscountprice() {
return discountprice;
}
public void setDiscountprice(Double discountprice) {
this.discountprice = discountprice;
}
public String getQrcodesrc() {
return qrcodesrc;
}
public void setQrcodesrc(String qrcodesrc) {
this.qrcodesrc = qrcodesrc;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getSight_spot_code() {
return sight_spot_code;
}
public void setSight_spot_code(String sight_spot_code) {
this.sight_spot_code = sight_spot_code;
}
public String getIsBupiao() {
return isBupiao;
}
public void setIsBupiao(String isBupiao) {
this.isBupiao = isBupiao;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPlay_address() {
return play_address;
}
public void setPlay_address(String play_address) {
this.play_address = play_address;
}
public String getPlay_time() {
return play_time;
}
public void setPlay_time(String play_time) {
this.play_time = play_time;
}
public String getIs_fetch() {
return is_fetch;
}
public void setIs_fetch(String is_fetch) {
this.is_fetch = is_fetch;
}
public String getTongl_status() {
return tongl_status;
}
public void setTongl_status(String tongl_status) {
this.tongl_status = tongl_status;
}
public String getTongl_third_ordersn() {
return tongl_third_ordersn;
}
public void setTongl_third_ordersn(String tongl_third_ordersn) {
this.tongl_third_ordersn = tongl_third_ordersn;
}
public String getTongl_ordersn() {
return tongl_ordersn;
}
public void setTongl_ordersn(String tongl_ordersn) {
this.tongl_ordersn = tongl_ordersn;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
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;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment