Commit 5619a6d7 authored by tangf's avatar tangf

xiug

parents 158ed33a 94413733
......@@ -6,6 +6,7 @@ import com.pangding.web.authority.service.UserService;
import com.pangding.web.authority.vo.CompanyVo;
import com.pangding.web.authority.vo.resvo.SaveCompanyResVo;
import com.yanzuoguang.util.helper.CheckerHelper;
import com.yanzuoguang.util.helper.FileHelper;
import com.yanzuoguang.util.vo.ResponseResult;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
......@@ -13,6 +14,9 @@ import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.commons.CommonsMultipartFile;
import java.io.IOException;
/**
* @Author zhangjinyao
......@@ -140,4 +144,8 @@ public class ComputerRegisterController {
return ResponseResult.result(verifyCode);
}
@RequestMapping(value = "/fileUpload",method = RequestMethod.POST,produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
public ResponseResult<String> fileUpload(@RequestBody CommonsMultipartFile file) throws IOException {
return ResponseResult.result(registerServiceImpl.fileUpload(file));
}
}
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.OrderStepOneResVo;
import com.pangding.web.authority.vo.resvo.OrderStepThreeResVo;
import com.yanzuoguang.util.vo.ResponseResult;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
......@@ -26,4 +27,16 @@ public class DataController {
dataServiceImpl.save(reqVo);
return new ResponseResult();
}
@PostMapping(value = "/saveOrderStepThree",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
public ResponseResult saveOrderStepThree(@RequestBody OrderStepThreeResVo reqVo){
dataServiceImpl.saveOrderStepThree(reqVo);
return new ResponseResult();
}
@PostMapping(value = "/saveOrderStepOne",produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
public ResponseResult saveOrderStepOne(@RequestBody OrderStepOneResVo reqVo){
dataServiceImpl.saveOrderStepOne(reqVo);
return new ResponseResult();
}
}
......@@ -289,7 +289,7 @@ public class PangdingManagementController {
.notBlankCheck("qrCode",reqVo.getQrCode())
.checkException();
System.out.println("change");
return ResponseResult.result(companyServiceImpl.getCompanyByQrCode(reqVo));
return ResponseResult.resultAllowNull(companyServiceImpl.getCompanyByQrCode(reqVo));
}
@RequestMapping(value = "/findCompanyDivideInfo",method = RequestMethod.POST,produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
......
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);
}
}
......@@ -27,14 +27,14 @@ public class WechatUserDaoImpl extends BaseDaoImpl implements WechatUserDao {
register(WechatUserVo.class);
table.add(GET_USER_NUM,"select count(id) as num from pd_wechat_user where 1=1 ")
.add("companyId","and company_id = ? ")
.add("sourceCompanyId","and source_company_id = ? ")
.add("start","and subscribe_date >= ? ")
.add("end","and subscribe_date < ? ");
table.add(GET_USER_LIST,"select * from pd_wechat_user where 1=1 ")
.add("start","and subscribe_date >= ? ")
.add("end","and subscribe_date < ? ")
.add("companyId","and company_id = ? order by subscribe_date desc");
.add("sourceCompanyId","and source_company_id = ? order by subscribe_date desc");
}
@Override
......
package com.pangding.web.authority.service;
import com.pangding.web.authority.vo.resvo.FindResVo;
import com.pangding.web.authority.vo.resvo.OrderStepOneResVo;
import com.pangding.web.authority.vo.resvo.OrderStepThreeResVo;
/**
......@@ -9,4 +11,8 @@ import com.pangding.web.authority.vo.resvo.FindResVo;
*/
public interface DataService {
void save(FindResVo reqVo);
void saveOrderStepThree(OrderStepThreeResVo reqVo);
void saveOrderStepOne(OrderStepOneResVo reqVo);
}
......@@ -6,9 +6,11 @@ import com.pangding.web.authority.vo.cloudvo.LoginResVo;
import com.pangding.web.authority.vo.reqvo.*;
import com.pangding.web.authority.vo.CompanyVo;
import com.pangding.web.authority.vo.resvo.SaveCompanyResVo;
import org.springframework.web.multipart.commons.CommonsMultipartFile;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import java.io.IOException;
/**
* @Author zhangjinyao
......@@ -79,4 +81,6 @@ public interface RegisterService {
* @return
*/
String enterpriceSubmit(EnterpriceSubmitReqVo reqVo);
String fileUpload(CommonsMultipartFile file) throws IOException;
}
......@@ -65,7 +65,7 @@ public class IndexServiceImpl implements IndexService {
@Override
public Integer getUserPrecipitation(UserPrecipitationReqVo reqVo) {
WechatUserGetReqVo getReqVo = new WechatUserGetReqVo();
getReqVo.setCompanyId(reqVo.getId());
getReqVo.setSourceCompanyId(reqVo.getId());
List<WechatUserVo> wechatUserVoList = wechatUserDaoImpl.loadList(getReqVo, WechatUserVo.class);
if (null == wechatUserVoList || wechatUserVoList.isEmpty()){
return 0;
......@@ -119,7 +119,7 @@ public class IndexServiceImpl implements IndexService {
,TimeConstant.DECEMBER_BEGIN
,TimeConstant.YEAR_END};
WechatUserGetReqVo getReqVo = new WechatUserGetReqVo();
getReqVo.setCompanyId(reqVo.getId());
getReqVo.setSourceCompanyId(reqVo.getId());
for (int i = 0; i < monthList.length-1; i++) {
getReqVo.setStart(monthList[i]);
getReqVo.setEnd(monthList[i+1]);
......
......@@ -196,7 +196,7 @@ public class PangdingPartnerServiceImpl implements PangdingPartnerService {
resVo.setCompanyId(reqVo.getCompanyId());
/*今日沉淀量*/
WechatUserGetReqVo todayGetReqVo = new WechatUserGetReqVo();
todayGetReqVo.setCompanyId(reqVo.getCompanyId());
todayGetReqVo.setSourceCompanyId(reqVo.getCompanyId());
todayGetReqVo.setStart(DateHelper.getNow().substring(0,10)+" 00:00:00");
todayGetReqVo.setEnd(DateHelper.getNow().substring(0,10)+" 23:59:59");
List<Map> todayList = (List<Map>) wechatUserDaoImpl.getUserNum(todayGetReqVo);
......@@ -204,13 +204,13 @@ public class PangdingPartnerServiceImpl implements PangdingPartnerService {
resVo.setTodayPrecipitation(today);
/*总沉淀量*/
WechatUserGetReqVo totalGetReqVo = new WechatUserGetReqVo();
totalGetReqVo.setCompanyId(reqVo.getCompanyId());
totalGetReqVo.setSourceCompanyId(reqVo.getCompanyId());
List<Map> totalList = (List<Map>) wechatUserDaoImpl.getUserNum(totalGetReqVo);
Long total = (Long) totalList.get(0).get("num");
resVo.setTotalPrecipitation(total);
/*沉淀用户分页列表*/
WechatUserGetReqVo userListGetReqVo = new WechatUserGetReqVo();
userListGetReqVo.setCompanyId(reqVo.getCompanyId());
userListGetReqVo.setSourceCompanyId(reqVo.getCompanyId());
PageSizeData<WechatUserVo> wechatUserVoList = wechatUserDaoImpl.getUserList(reqVo);
resVo.setWechatUserVoList(wechatUserVoList);
return resVo;
......
......@@ -23,9 +23,12 @@ import com.yanzuoguang.util.vo.ResponseResult;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.multipart.commons.CommonsMultipartFile;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
......@@ -552,4 +555,12 @@ public class RegisterServiceImpl implements RegisterService {
companyBankCardDaoImpl.update(companyBankCardVo);
return reqVo.getVerifyCode();
}
@Override
public String fileUpload(CommonsMultipartFile file) throws IOException {
String path = "C:/" + DateHelper.getNow() + file.getOriginalFilename();
File newFile = new File(path);
file.transferTo(newFile);
return path;
}
}
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/10 18:03
*/
@TableAnnotation("pd_order_rel")
public class OrderRelVo {
private String id;
private String group_ordersn;
private String ordersn;
/**
* 商品类型 1 景区 2 酒店 3餐饮 4 特产
*/
private String good_type;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getGroup_ordersn() {
return group_ordersn;
}
public void setGroup_ordersn(String group_ordersn) {
this.group_ordersn = group_ordersn;
}
public String getOrdersn() {
return ordersn;
}
public void setOrdersn(String ordersn) {
this.ordersn = ordersn;
}
public String getGood_type() {
return good_type;
}
public void setGood_type(String good_type) {
this.good_type = good_type;
}
}
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 Integer payment_status;
/**
* 支付类型
*/
private Integer 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 Integer divide_status;
/**
* 分润时间
*/
private String divide_time;
/**
* 0未支付 1出票中(已支付)2出票成功/预订成功/有房 3出票失败/预订失败/无房 4核销中 5核销完成 6部分退货/退款 7全部退款退货 8取消 9已完成
*/
private Integer order_status;
/**
* 第三方订单号
*/
private String third_order_id;
/**
* 0未汇总,1已汇总
*/
private Integer is_summarize;
/**
* 汇总时间
*/
private String summarize_time;
/**
* 供应商
*/
private String product_company_id;
/**
* 接口商
*/
private String interface_company_id;
/**
* 供应商名称
*/
private String product_company_name;
/**
* 是否删除 0 未删除 1 已删除
*/
private Integer 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_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_time() {
return divide_time;
}
public void setDivide_time(String divide_time) {
this.divide_time = divide_time;
}
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 Integer getIs_summarize() {
return is_summarize;
}
public void setIs_summarize(Integer 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 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;
}
public Integer getPayment_status() {
return payment_status;
}
public void setPayment_status(Integer payment_status) {
this.payment_status = payment_status;
}
public Integer getPay_type() {
return pay_type;
}
public void setPay_type(Integer pay_type) {
this.pay_type = pay_type;
}
public Integer getDivide_status() {
return divide_status;
}
public void setDivide_status(Integer divide_status) {
this.divide_status = divide_status;
}
public Integer getOrder_status() {
return order_status;
}
public void setOrder_status(Integer order_status) {
this.order_status = order_status;
}
public Integer getIs_delete() {
return is_delete;
}
public void setIs_delete(Integer is_delete) {
this.is_delete = is_delete;
}
}
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 Integer 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 Integer getTicket_status() {
return ticket_status;
}
public void setTicket_status(Integer 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 Integer 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 Integer getSub_order_type() {
return sub_order_type;
}
public void setSub_order_type(Integer 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;
/**
* @Author zhangjinyao
* @create 2019/7/9 18:12
*/
public class TyyOrderMixVo {
private String ordersn;
private String consignee;
private String scenicspotname;
private String productsn;
private Integer buynum;
private Double price;
private Double total;
private String traveldate;
private String paytype;
private String paymenttime;
private String paystatus;
private String order_status;
private String piaostorderid;
private String memberid;
private String enterpriseid;
private String usertel;
private String ordertime;
private Double purchaseprice;
private String sub_order_type;
private String emancipated;
private String emancipated_date;
private String profit_checked;
private String profit_checked_date;
private String fxsid;
private String isdelete;
private Double realprice;
private Double discountprice;
private String sight_spot_code;
private String play_address;
private String play_time;
private String tongl_third_ordersn;
private String tongl_ordersn;
private String pid;
private Integer order_type;
private Integer return_num;
private Double return_money;
private String pay_type_id;
private Double order_poundage_price;
private String product_company_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 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 getOrder_status() {
return order_status;
}
public void setOrder_status(String order_status) {
this.order_status = order_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 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 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 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 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 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 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 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 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;
}
public String getPid() {
return pid;
}
public void setPid(String pid) {
this.pid = pid;
}
public Integer getOrder_type() {
return order_type;
}
public void setOrder_type(Integer order_type) {
this.order_type = order_type;
}
public Integer getReturn_num() {
return return_num;
}
public void setReturn_num(Integer return_num) {
this.return_num = return_num;
}
public Double getReturn_money() {
return return_money;
}
public void setReturn_money(Double return_money) {
this.return_money = return_money;
}
public String getPay_type_id() {
return pay_type_id;
}
public void setPay_type_id(String pay_type_id) {
this.pay_type_id = pay_type_id;
}
public Double getOrder_poundage_price() {
return order_poundage_price;
}
public void setOrder_poundage_price(Double order_poundage_price) {
this.order_poundage_price = order_poundage_price;
}
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;
}
}
package com.pangding.web.authority.vo;
import com.yanzuoguang.dao.TableAnnotation;
/**
* @Author zhangjinyao
* @create 2019/7/9 18:03
*/
@TableAnnotation("pd_order")
public class TyyOrderVo {
/**
* 订单编号
*/
private String id;
/**
* 父订单编号
*/
private String pid;
/**
* 分销商编号
*/
private String sale_company_id;
/**
* 运营商编号
*/
private String product_company_id;
/**
* 用户编号
*/
private String user_id;
/**
* 订单类型 1:景区,2:酒店,3:餐饮,4:特产,10:组合
*/
private Integer order_type;
/**
* 订单子类型: 1、扫码购票,2、网络购票,3、自助机购票,4、扫码支付,5、预约
*/
private Integer sub_order_type;
private String product_id;
/**
* 产品名称
*/
private String product_name;
/**
* 游玩时间
*/
private String play_date;
/**
* 单价
*/
private Double price;
/**
* 购买数量
*/
private Integer order_num;
/**
* 售价
*/
private Double sale_price;
/**
* 折扣价
*/
private Double discount_price;
/**
* 订单实际支付金额
*/
private Double real_price;
/**
* 成本单价
*/
private Double settlement_price;
/**
* 成本价
*/
private Double cost_price;
/**
* 利润金额
*/
private Double profit_price;
/**
* 手续费
*/
private Double order_poundage_price;
/**
* 退款数量
*/
private Integer return_num;
/**
* 退款总额
*/
private Double return_money;
/**
* 总手续费
*/
private Double refund_poundage_price;
/**
* 订单状态
* 0,待付款、1,已付款(出票中)、2,成功出票、3,核销中、4,核销完成、5,部分退款、6,全部退款、7,已取消
*/
private Integer order_status;
private String create_date;
/**
* 付款类型 0:微信 1:支付宝 2:通联
*/
private Integer pay_type;
/**
* 付款凭证编号
*/
private String pay_type_id;
/**
* 付款扩展值
*/
private String pay_type_extend;
/**
* 付款时间
*/
private String pay_date;
/**
* 支付状态 0:待付款 1:已付款给商户 2:已付款
*/
private Integer pay_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 getPid() {
return pid;
}
public void setPid(String pid) {
this.pid = pid;
}
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 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 getUser_id() {
return user_id;
}
public void setUser_id(String user_id) {
this.user_id = user_id;
}
public Integer getOrder_type() {
return order_type;
}
public void setOrder_type(Integer order_type) {
this.order_type = order_type;
}
public String getProduct_id() {
return product_id;
}
public void setProduct_id(String product_id) {
this.product_id = product_id;
}
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 Double getPrice() {
return price;
}
public void setPrice(Double price) {
this.price = price;
}
public Integer getOrder_num() {
return order_num;
}
public void setOrder_num(Integer order_num) {
this.order_num = order_num;
}
public Double getSale_price() {
return sale_price;
}
public void setSale_price(Double sale_price) {
this.sale_price = sale_price;
}
public Double getDiscount_price() {
return discount_price;
}
public void setDiscount_price(Double discount_price) {
this.discount_price = discount_price;
}
public Double getReal_price() {
return real_price;
}
public void setReal_price(Double real_price) {
this.real_price = real_price;
}
public Double getSettlement_price() {
return settlement_price;
}
public void setSettlement_price(Double settlement_price) {
this.settlement_price = settlement_price;
}
public Double getCost_price() {
return cost_price;
}
public void setCost_price(Double cost_price) {
this.cost_price = cost_price;
}
public Double getProfit_price() {
return profit_price;
}
public void setProfit_price(Double profit_price) {
this.profit_price = profit_price;
}
public Double getOrder_poundage_price() {
return order_poundage_price;
}
public void setOrder_poundage_price(Double order_poundage_price) {
this.order_poundage_price = order_poundage_price;
}
public Integer getReturn_num() {
return return_num;
}
public void setReturn_num(Integer return_num) {
this.return_num = return_num;
}
public Double getReturn_money() {
return return_money;
}
public void setReturn_money(Double return_money) {
this.return_money = return_money;
}
public Double getRefund_poundage_price() {
return refund_poundage_price;
}
public void setRefund_poundage_price(Double refund_poundage_price) {
this.refund_poundage_price = refund_poundage_price;
}
public String getCreate_date() {
return create_date;
}
public void setCreate_date(String create_date) {
this.create_date = create_date;
}
public String getPay_type_id() {
return pay_type_id;
}
public void setPay_type_id(String pay_type_id) {
this.pay_type_id = pay_type_id;
}
public String getPay_type_extend() {
return pay_type_extend;
}
public void setPay_type_extend(String pay_type_extend) {
this.pay_type_extend = pay_type_extend;
}
public String getPay_date() {
return pay_date;
}
public void setPay_date(String pay_date) {
this.pay_date = pay_date;
}
public Integer getPay_status() {
return pay_status;
}
public void setPay_status(Integer pay_status) {
this.pay_status = pay_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;
}
public Integer getSub_order_type() {
return sub_order_type;
}
public void setSub_order_type(Integer sub_order_type) {
this.sub_order_type = sub_order_type;
}
public Integer getOrder_status() {
return order_status;
}
public void setOrder_status(Integer order_status) {
this.order_status = order_status;
}
public Integer getPay_type() {
return pay_type;
}
public void setPay_type(Integer pay_type) {
this.pay_type = pay_type;
}
}
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;
}
}
This diff is collapsed.
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;
}
}
......@@ -12,32 +12,30 @@ import java.math.BigDecimal;
* @create 2019/5/29 16:25
*/
@TableAnnotation("pd_wechat_user")
public class WechatUserVo extends BaseVo implements InitDao {
public class WechatUserVo extends BaseVo {
private String id;
private String nickname;
private Integer gender;
private String unionid;
private String openid;
@TableAnnotation("company_id")
private String companyId;
private String nickname;
private String integral;
private Integer gender;
private BigDecimal cash;
private String age;
@TableAnnotation("head_portrait")
private String headPortrait;
private String address;
private String status;
private String integral;
private BigDecimal cash;
private String age;
@TableAnnotation("subscribe_status")
private Integer subscribeStatus;
@TableAnnotation("subscribe_date")
private String subcribeDate;
......@@ -45,6 +43,23 @@ public class WechatUserVo extends BaseVo implements InitDao {
@TableAnnotation("unsubscribe_date")
private String unSubcribeDate;
@TableAnnotation("create_date")
private String createDate;
@TableAnnotation("source_company_id")
private String sourceCompanyId;
@TableAnnotation("from_company_id")
private String fromCompanyId;
@TableAnnotation("from_company_pid")
private String fromCompanyPid;
private Integer level;
@TableAnnotation("subscribe_scene")
private String subscribeScene;
public String getId() {
return id;
}
......@@ -85,14 +100,6 @@ public class WechatUserVo extends BaseVo implements InitDao {
this.openid = openid;
}
public String getCompanyId() {
return companyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
}
public String getIntegral() {
return integral;
}
......@@ -125,14 +132,6 @@ public class WechatUserVo extends BaseVo implements InitDao {
this.address = address;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getAge() {
return age;
}
......@@ -157,8 +156,59 @@ public class WechatUserVo extends BaseVo implements InitDao {
this.unSubcribeDate = unSubcribeDate;
}
@Override
public void init() {
public Integer getSubscribeStatus() {
return subscribeStatus;
}
public void setSubscribeStatus(Integer subscribeStatus) {
this.subscribeStatus = subscribeStatus;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getSourceCompanyId() {
return sourceCompanyId;
}
public void setSourceCompanyId(String sourceCompanyId) {
this.sourceCompanyId = sourceCompanyId;
}
public String getFromCompanyId() {
return fromCompanyId;
}
public void setFromCompanyId(String fromCompanyId) {
this.fromCompanyId = fromCompanyId;
}
public String getFromCompanyPid() {
return fromCompanyPid;
}
public void setFromCompanyPid(String fromCompanyPid) {
this.fromCompanyPid = fromCompanyPid;
}
public Integer getLevel() {
return level;
}
public void setLevel(Integer level) {
this.level = level;
}
public String getSubscribeScene() {
return subscribeScene;
}
public void setSubscribeScene(String subscribeScene) {
this.subscribeScene = subscribeScene;
}
}
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;
}
}
......@@ -7,7 +7,7 @@ package com.pangding.web.authority.vo.reqvo;
public class WechatUserGetReqVo {
private String reqId;
private String companyId;
private String sourceCompanyId;
private String start;
......@@ -37,11 +37,11 @@ public class WechatUserGetReqVo {
this.reqId = reqId;
}
public String getCompanyId() {
return companyId;
public String getSourceCompanyId() {
return sourceCompanyId;
}
public void setCompanyId(String companyId) {
this.companyId = companyId;
public void setSourceCompanyId(String sourceCompanyId) {
this.sourceCompanyId = sourceCompanyId;
}
}
package com.pangding.web.authority.vo.resvo;
import com.pangding.web.authority.vo.*;
import java.util.List;
/**
* @Author zhangjinyao
* @create 2019/7/9 19:08
*/
public class OrderStepOneResVo {
private String reqId;
private TyyOrderVo tyyOrderVo;
private TyyOrderMixVo tyyOrderMixVo;
private List<TyyOrderbackVo> tyyOrderbackVoList;
private TyyOrderdetailsVo tyyOrderdetailsVo;
private TyyTouristVo tyyTouristVo;
public String getReqId() {
return reqId;
}
public void setReqId(String reqId) {
this.reqId = reqId;
}
public TyyOrderVo getTyyOrderVo() {
return tyyOrderVo;
}
public void setTyyOrderVo(TyyOrderVo tyyOrderVo) {
this.tyyOrderVo = tyyOrderVo;
}
public TyyOrderMixVo getTyyOrderMixVo() {
return tyyOrderMixVo;
}
public void setTyyOrderMixVo(TyyOrderMixVo tyyOrderMixVo) {
this.tyyOrderMixVo = tyyOrderMixVo;
}
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;
}
public TyyTouristVo getTyyTouristVo() {
return tyyTouristVo;
}
public void setTyyTouristVo(TyyTouristVo tyyTouristVo) {
this.tyyTouristVo = tyyTouristVo;
}
}
package com.pangding.web.authority.vo.resvo;
import com.pangding.web.authority.vo.*;
import java.util.List;
/**
* @Author zhangjinyao
* @create 2019/7/7 20:40
*/
public class OrderStepThreeResVo {
private String reqId;
private TyyOrdersVo tyyOrdersVo;
private List<TyyOrderbackVo> tyyOrderbackVoList;
private TyyOrderdetailsVo tyyOrderdetailsVo;
private TyyTouristVo tyyTouristVo;
private OrderRelVo orderRelVo;
public OrderRelVo getOrderRelVo() {
return orderRelVo;
}
public void setOrderRelVo(OrderRelVo orderRelVo) {
this.orderRelVo = orderRelVo;
}
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