package com.java110.po.car;
|
|
import java.io.Serializable;
|
|
/**
|
* @ClassName CarInout
|
* @Description TODO
|
* @Author wuxw
|
* @Date 2020/5/27 14:31
|
* @Version 1.0
|
* add by wuxw 2020/5/27
|
**/
|
public class CarInoutPo implements Serializable {
|
|
private String inoutId;
|
private String communityId;
|
private String carNum;
|
private String state;
|
private String inTime;
|
private String outTime;
|
private String statusCd = "0";
|
private String paId;
|
private String vehicleType;
|
private String paymentAmount;
|
private String merchantId;
|
private String direction;
|
private String bId;
|
private String createTime;
|
|
|
public String getInoutId() {
|
return inoutId;
|
}
|
|
public void setInoutId(String inoutId) {
|
this.inoutId = inoutId;
|
}
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getCarNum() {
|
return carNum;
|
}
|
|
public void setCarNum(String carNum) {
|
this.carNum = carNum;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getInTime() {
|
return inTime;
|
}
|
|
public void setInTime(String inTime) {
|
this.inTime = inTime;
|
}
|
|
public String getOutTime() {
|
return outTime;
|
}
|
|
public void setOutTime(String outTime) {
|
this.outTime = outTime;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String getPaId() {
|
return paId;
|
}
|
|
public void setPaId(String paId) {
|
this.paId = paId;
|
}
|
|
public String getVehicleType() {
|
return vehicleType;
|
}
|
|
public void setVehicleType(String vehicleType) {
|
this.vehicleType = vehicleType;
|
}
|
|
public String getPaymentAmount() {
|
return paymentAmount;
|
}
|
|
public void setPaymentAmount(String paymentAmount) {
|
this.paymentAmount = paymentAmount;
|
}
|
|
public String getMerchantId() {
|
return merchantId;
|
}
|
|
public void setMerchantId(String merchantId) {
|
this.merchantId = merchantId;
|
}
|
|
public String getDirection() {
|
return direction;
|
}
|
|
public void setDirection(String direction) {
|
this.direction = direction;
|
}
|
|
public String getbId() {
|
return bId;
|
}
|
|
public void setbId(String bId) {
|
this.bId = bId;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
}
|