| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- package com.java110.dto.owner;
- import com.java110.dto.PageDto;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * @ClassName FloorDto
- * @Description 车辆管理数据层封装
- * @Author wuxw
- * @Date 2019/4/24 8:52
- * @Version 1.0
- * add by wuxw 2019/4/24
- **/
- public class OwnerCarDto extends PageDto implements Serializable {
- private String carColor;
- private String carBrand;
- private String carType;
- private String carTypeName;
- private String carNum;
- private String[] carNums;
- private String communityId;
- private String psId;
- private String remark;
- private String ownerId;
- private String userId;
- private String carId;
- private Date createTime;
- private String statusCd = "0";
- public String getCarColor() {
- return carColor;
- }
- public void setCarColor(String carColor) {
- this.carColor = carColor;
- }
- 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 getCarNum() {
- return carNum;
- }
- public void setCarNum(String carNum) {
- this.carNum = carNum;
- }
- public String getPsId() {
- return psId;
- }
- public void setPsId(String psId) {
- this.psId = psId;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- public String getOwnerId() {
- return ownerId;
- }
- public void setOwnerId(String ownerId) {
- this.ownerId = ownerId;
- }
- public String getUserId() {
- return userId;
- }
- public void setUserId(String userId) {
- this.userId = userId;
- }
- public String getCarId() {
- return carId;
- }
- public void setCarId(String carId) {
- this.carId = carId;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public String getStatusCd() {
- return statusCd;
- }
- public void setStatusCd(String statusCd) {
- this.statusCd = statusCd;
- }
- public String getCarTypeName() {
- return carTypeName;
- }
- public void setCarTypeName(String carTypeName) {
- this.carTypeName = carTypeName;
- }
- public String getCommunityId() {
- return communityId;
- }
- public void setCommunityId(String communityId) {
- this.communityId = communityId;
- }
- public String[] getCarNums() {
- return carNums;
- }
- public void setCarNums(String[] carNums) {
- this.carNums = carNums;
- }
- }
|