old mode 100644
new mode 100755
| | |
| | | package com.java110.vo.api.visit; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | public class ApiVisitDataVo implements Serializable { |
| | | private String vId; |
| | |
| | | private String departureTime; |
| | | private String createTime; |
| | | private String statusCd = "0"; |
| | | private String carNum; |
| | | private String entourage; |
| | | private String reasonType; |
| | | private String state; |
| | | private String stateName; |
| | | |
| | | public String getvId() { |
| | | return vId; |
| | |
| | | public void setStatusCd(String statusCd) { |
| | | this.statusCd = statusCd; |
| | | } |
| | | |
| | | public String getCarNum() { |
| | | return carNum; |
| | | } |
| | | |
| | | public void setCarNum(String carNum) { |
| | | this.carNum = carNum; |
| | | } |
| | | |
| | | public String getEntourage() { |
| | | return entourage; |
| | | } |
| | | |
| | | public void setEntourage(String entourage) { |
| | | this.entourage = entourage; |
| | | } |
| | | |
| | | public String getReasonType() { |
| | | return reasonType; |
| | | } |
| | | |
| | | public void setReasonType(String reasonType) { |
| | | this.reasonType = reasonType; |
| | | } |
| | | |
| | | public String getState() { |
| | | return state; |
| | | } |
| | | |
| | | public void setState(String state) { |
| | | this.state = state; |
| | | } |
| | | |
| | | public String getStateName() { |
| | | return stateName; |
| | | } |
| | | |
| | | public void setStateName(String stateName) { |
| | | this.stateName = stateName; |
| | | } |
| | | } |