package com.java110.po.car; import java.io.Serializable; /** * @ClassName OwnerCarPo * @Description TODO * @Author wuxw * @Date 2020/5/29 14:56 * @Version 1.0 * add by wuxw 2020/5/29 **/ public class OwnerCarPo implements Serializable { private String carId; private String ownerId; private String carNum; private String carBrand; private String carType; private String carColor; private String psId; private String userId; private String remark; private String communityId; public String getCarId() { return carId; } public void setCarId(String carId) { this.carId = carId; } public String getOwnerId() { return ownerId; } public void setOwnerId(String ownerId) { this.ownerId = ownerId; } public String getCarNum() { return carNum; } public void setCarNum(String carNum) { this.carNum = carNum; } public String getCarBrand() { return carBrand; } public void setCarBrand(String carBrand) { this.carBrand = carBrand; } public String getCarType() { return carType; } public void setCarType(String carType) { this.carType = carType; } public String getCarColor() { return carColor; } public void setCarColor(String carColor) { this.carColor = carColor; } public String getPsId() { return psId; } public void setPsId(String psId) { this.psId = psId; } public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } public String getCommunityId() { return communityId; } public void setCommunityId(String communityId) { this.communityId = communityId; } }