Commit 24b6c4bc9d342a85123ceae74398e0b3f25bbe93

Authored by 王富生
1 parent e09659a0

提交

src/main/java/com/rnt/vo/RoadsideRequest.java 0 → 100644
  1 +package com.rnt.vo;
  2 +
  3 +import java.io.Serializable;
  4 +import java.math.BigDecimal;
  5 +/**
  6 + *
  7 + * Copyright: Copyright (c) 2017 ZTE-ITS
  8 + *
  9 + * @ClassName: RoadsideRequest.java
  10 + * @version: v1.0.0
  11 + * @author: wangbiao
  12 + * @date: 2017年5月17日 下午2:45:39
  13 + * Modification History:
  14 + * Date Author Version Description
  15 + *---------------------------------------------------------*
  16 + * 2017年5月17日 wangbiao v1.0.0 创建
  17 + */
  18 +public class RoadsideRequest implements Serializable{
  19 +
  20 + /**1成功 0失败*/
  21 + private String status;
  22 + /**查询状态描述.*/
  23 + private String msg;
  24 + /**订单编码*/
  25 + private String orderCode ;
  26 + /**订单金额 单位:分*/
  27 + private BigDecimal orderPay ;
  28 +
  29 + /**出场时间.*/
  30 + private String outtime;
  31 + /**停车时长 :单位:秒.*/
  32 + private Long staytime;
  33 + /**停车场名称.*/
  34 + private String parkName;
  35 + /**入场时间.*/
  36 + private String intime;
  37 +
  38 +
  39 + public String getParkName() {
  40 + return parkName;
  41 + }
  42 + public void setParkName(String parkName) {
  43 + this.parkName = parkName;
  44 + }
  45 + public String getIntime() {
  46 + return intime;
  47 + }
  48 + public void setIntime(String intime) {
  49 + this.intime = intime;
  50 + }
  51 + public Long getStaytime() {
  52 + return staytime;
  53 + }
  54 + public void setStaytime(Long staytime) {
  55 + this.staytime = staytime;
  56 + }
  57 + public String getOuttime() {
  58 + return outtime;
  59 + }
  60 + public void setOuttime(String outtime) {
  61 + this.outtime = outtime;
  62 + }
  63 + public String getStatus() {
  64 + return status;
  65 + }
  66 + public void setStatus(String status) {
  67 + this.status = status;
  68 + }
  69 + public String getMsg() {
  70 + return msg;
  71 + }
  72 + public void setMsg(String msg) {
  73 + this.msg = msg;
  74 + }
  75 + public String getOrderCode() {
  76 + return orderCode;
  77 + }
  78 + public void setOrderCode(String orderCode) {
  79 + this.orderCode = orderCode;
  80 + }
  81 + public BigDecimal getOrderPay() {
  82 + return orderPay;
  83 + }
  84 + public void setOrderPay(BigDecimal orderPay) {
  85 + this.orderPay = orderPay;
  86 + }
  87 +}
... ...