| | |
| | | private String endTime; |
| | | private String payWay; |
| | | private int state; |
| | | private String type; |
| | | private String cid; |
| | | private String vid; |
| | | |
| | | |
| | | public String getCid() { |
| | | return cid; |
| | | } |
| | | |
| | | public void setCid(String cid) { |
| | | this.cid = cid; |
| | | } |
| | | |
| | | public String getVid() { |
| | | return vid; |
| | | } |
| | | |
| | | public void setVid(String vid) { |
| | | this.vid = vid; |
| | | } |
| | | |
| | | public String getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(String type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getTitle() { |
| | | return title; |
| | |
| | | if (record.getVipEndTime() != null) |
| | | vo.setEndTime(TimeUtil.getGernalTime(record.getVipEndTime().getTime(), "yyyy.MM.dd HH:mm")); |
| | | vo.setOrderNo(record.getId()); |
| | | vo.setType(record.getOrderType().name()); |
| | | String payWay = ""; |
| | | switch (record.getPayWay()) { |
| | | case OrderRecord.PAY_WAY_ALIPAY: |
| | |
| | | vo.setPayWay(payWay); |
| | | } |
| | | vo.setState(record.getState()); |
| | | |
| | | vo.setCid(record.getVideoCid()); |
| | | vo.setVid(record.getVideoVid()); |
| | | return vo; |
| | | } |
| | | } |