OwnerCarDto.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. package com.java110.dto;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * @ClassName FloorDto
  6. * @Description 车辆管理数据层封装
  7. * @Author wuxw
  8. * @Date 2019/4/24 8:52
  9. * @Version 1.0
  10. * add by wuxw 2019/4/24
  11. **/
  12. public class OwnerCarDto extends PageDto implements Serializable {
  13. private String carColor;
  14. private String carBrand;
  15. private String carType;
  16. private String carNum;
  17. private String psId;
  18. private String remark;
  19. private String ownerId;
  20. private String userId;
  21. private String carId;
  22. private Date createTime;
  23. private String statusCd = "0";
  24. public String getCarColor() {
  25. return carColor;
  26. }
  27. public void setCarColor(String carColor) {
  28. this.carColor = carColor;
  29. }
  30. public String getCarBrand() {
  31. return carBrand;
  32. }
  33. public void setCarBrand(String carBrand) {
  34. this.carBrand = carBrand;
  35. }
  36. public String getCarType() {
  37. return carType;
  38. }
  39. public void setCarType(String carType) {
  40. this.carType = carType;
  41. }
  42. public String getCarNum() {
  43. return carNum;
  44. }
  45. public void setCarNum(String carNum) {
  46. this.carNum = carNum;
  47. }
  48. public String getPsId() {
  49. return psId;
  50. }
  51. public void setPsId(String psId) {
  52. this.psId = psId;
  53. }
  54. public String getRemark() {
  55. return remark;
  56. }
  57. public void setRemark(String remark) {
  58. this.remark = remark;
  59. }
  60. public String getOwnerId() {
  61. return ownerId;
  62. }
  63. public void setOwnerId(String ownerId) {
  64. this.ownerId = ownerId;
  65. }
  66. public String getUserId() {
  67. return userId;
  68. }
  69. public void setUserId(String userId) {
  70. this.userId = userId;
  71. }
  72. public String getCarId() {
  73. return carId;
  74. }
  75. public void setCarId(String carId) {
  76. this.carId = carId;
  77. }
  78. public Date getCreateTime() {
  79. return createTime;
  80. }
  81. public void setCreateTime(Date createTime) {
  82. this.createTime = createTime;
  83. }
  84. public String getStatusCd() {
  85. return statusCd;
  86. }
  87. public void setStatusCd(String statusCd) {
  88. this.statusCd = statusCd;
  89. }
  90. }