TmstruckReceiptResultChild.java 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. package com.steerinfo.route.model;
  2. import com.steerinfo.framework.model.IBasePO;
  3. import io.swagger.annotations.ApiModel;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.math.BigDecimal;
  6. import java.util.Date;
  7. @ApiModel(value="收货实绩子表")
  8. public class TmstruckReceiptResultChild implements IBasePO<BigDecimal> {
  9. /**
  10. * 主键ID(CHILD_ID,DECIMAL,38)
  11. */
  12. @ApiModelProperty(value="主键ID",required=true)
  13. private BigDecimal childId;
  14. /**
  15. * 收货实绩ID(RECEIPT_RESULT_ID,DECIMAL,38)
  16. */
  17. @ApiModelProperty(value="收货实绩ID",required=false)
  18. private BigDecimal receiptResultId;
  19. /**
  20. * 其他照片1(OTHER_PHOTO1,VARCHAR,100)
  21. */
  22. @ApiModelProperty(value="其他照片1",required=false)
  23. private String otherPhoto1;
  24. /**
  25. * 其他照片2(OTHER_PHOTO2,VARCHAR,100)
  26. */
  27. @ApiModelProperty(value="其他照片2",required=false)
  28. private String otherPhoto2;
  29. /**
  30. * 其他照片3(OTHER_PHOTO3,VARCHAR,100)
  31. */
  32. @ApiModelProperty(value="其他照片3",required=false)
  33. private String otherPhoto3;
  34. /**
  35. * 记录创建人(INSERT_USERNAME,VARCHAR,20)
  36. */
  37. @ApiModelProperty(value="记录创建人",required=false)
  38. private String insertUsername;
  39. /**
  40. * 记录创建时间(INSERT_TIME,TIMESTAMP,7)
  41. */
  42. @ApiModelProperty(value="记录创建时间",required=false)
  43. private Date insertTime;
  44. /**
  45. * 记录修改人(UPDATE_USERNAME,VARCHAR,20)
  46. */
  47. @ApiModelProperty(value="记录修改人",required=false)
  48. private String updateUsername;
  49. /**
  50. * 记录修改时间(UPDATE_TIME,TIMESTAMP,7)
  51. */
  52. @ApiModelProperty(value="记录修改时间",required=false)
  53. private Date updateTime;
  54. /**
  55. * 记录创建或修改备注(INSERT_UPDATE_REMARK,VARCHAR,100)
  56. */
  57. @ApiModelProperty(value="记录创建或修改备注",required=false)
  58. private String insertUpdateRemark;
  59. private static final long serialVersionUID = 1L;
  60. @Override
  61. public BigDecimal getId() {
  62. return this.childId;
  63. }
  64. @Override
  65. public void setId(BigDecimal childId) {
  66. this.childId = childId;
  67. }
  68. public BigDecimal getChildId() {
  69. return childId;
  70. }
  71. public void setChildId(BigDecimal childId) {
  72. this.childId = childId;
  73. }
  74. public BigDecimal getReceiptResultId() {
  75. return receiptResultId;
  76. }
  77. public void setReceiptResultId(BigDecimal receiptResultId) {
  78. this.receiptResultId = receiptResultId;
  79. }
  80. public String getOtherPhoto1() {
  81. return otherPhoto1;
  82. }
  83. public void setOtherPhoto1(String otherPhoto1) {
  84. this.otherPhoto1 = otherPhoto1 == null ? null : otherPhoto1.trim();
  85. }
  86. public String getOtherPhoto2() {
  87. return otherPhoto2;
  88. }
  89. public void setOtherPhoto2(String otherPhoto2) {
  90. this.otherPhoto2 = otherPhoto2 == null ? null : otherPhoto2.trim();
  91. }
  92. public String getOtherPhoto3() {
  93. return otherPhoto3;
  94. }
  95. public void setOtherPhoto3(String otherPhoto3) {
  96. this.otherPhoto3 = otherPhoto3 == null ? null : otherPhoto3.trim();
  97. }
  98. public String getInsertUsername() {
  99. return insertUsername;
  100. }
  101. public void setInsertUsername(String insertUsername) {
  102. this.insertUsername = insertUsername == null ? null : insertUsername.trim();
  103. }
  104. public Date getInsertTime() {
  105. return insertTime;
  106. }
  107. public void setInsertTime(Date insertTime) {
  108. this.insertTime = insertTime;
  109. }
  110. public String getUpdateUsername() {
  111. return updateUsername;
  112. }
  113. public void setUpdateUsername(String updateUsername) {
  114. this.updateUsername = updateUsername == null ? null : updateUsername.trim();
  115. }
  116. public Date getUpdateTime() {
  117. return updateTime;
  118. }
  119. public void setUpdateTime(Date updateTime) {
  120. this.updateTime = updateTime;
  121. }
  122. public String getInsertUpdateRemark() {
  123. return insertUpdateRemark;
  124. }
  125. public void setInsertUpdateRemark(String insertUpdateRemark) {
  126. this.insertUpdateRemark = insertUpdateRemark == null ? null : insertUpdateRemark.trim();
  127. }
  128. @Override
  129. public String toString() {
  130. StringBuilder sb = new StringBuilder();
  131. sb.append(getClass().getSimpleName());
  132. sb.append(" [");
  133. sb.append("Hash = ").append(hashCode());
  134. sb.append(", childId=").append(childId);
  135. sb.append(", receiptResultId=").append(receiptResultId);
  136. sb.append(", otherPhoto1=").append(otherPhoto1);
  137. sb.append(", otherPhoto2=").append(otherPhoto2);
  138. sb.append(", otherPhoto3=").append(otherPhoto3);
  139. sb.append(", insertUsername=").append(insertUsername);
  140. sb.append(", insertTime=").append(insertTime);
  141. sb.append(", updateUsername=").append(updateUsername);
  142. sb.append(", updateTime=").append(updateTime);
  143. sb.append(", insertUpdateRemark=").append(insertUpdateRemark);
  144. sb.append(", serialVersionUID=").append(serialVersionUID);
  145. sb.append("]");
  146. return sb.toString();
  147. }
  148. }