WmsBoxInfo.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. package com.ruoyi.ams.box.domain;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.ruoyi.common.annotation.Excel;
  4. import com.ruoyi.common.core.domain.BaseEntity;
  5. import org.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. /**
  8. * 容器管理对象 wms_box_info
  9. *
  10. * @author ruoyi
  11. * @date 2022-11-01
  12. */
  13. public class WmsBoxInfo extends BaseEntity
  14. {
  15. private static final long serialVersionUID = 1L;
  16. /** 主键 */
  17. private Long id;
  18. /** 容器编号 */
  19. @Excel(name = "容器编号")
  20. private String boxNo;
  21. /** 容器类型 */
  22. @Excel(name = "容器类型",type = Excel.Type.EXPORT)
  23. private String boxType;
  24. /** 状态 */
  25. @Excel(name = "状态",type = Excel.Type.EXPORT)
  26. private Integer boxState;
  27. /** 是否有货 */
  28. @Excel(name = "是否有货",type = Excel.Type.EXPORT)
  29. private String isEmpty;
  30. /** */
  31. // @Excel(name = "")
  32. private String userdefine1;
  33. /** */
  34. // @Excel(name = "")
  35. private String userdefine2;
  36. /** 绑定库位 */
  37. @Excel(name = "绑定库位",type = Excel.Type.EXPORT)
  38. @TableField(exist = false)
  39. private String locationNo;
  40. private Long locationId;
  41. /** 是否满托 */
  42. @Excel(name = "是否满托",type = Excel.Type.EXPORT)
  43. private String isFull;
  44. public Long getId() {
  45. return id;
  46. }
  47. public void setId(Long id) {
  48. this.id = id;
  49. }
  50. public String getBoxNo() {
  51. return boxNo;
  52. }
  53. public void setBoxNo(String boxNo) {
  54. this.boxNo = boxNo;
  55. }
  56. public String getBoxType() {
  57. return boxType;
  58. }
  59. public void setBoxType(String boxType) {
  60. this.boxType = boxType;
  61. }
  62. public Integer getBoxState() {
  63. return boxState;
  64. }
  65. public void setBoxState(Integer boxState) {
  66. this.boxState = boxState;
  67. }
  68. public String getIsEmpty() {
  69. return isEmpty;
  70. }
  71. public void setIsEmpty(String isEmpty) {
  72. this.isEmpty = isEmpty;
  73. }
  74. public String getUserdefine1() {
  75. return userdefine1;
  76. }
  77. public void setUserdefine1(String userdefine1) {
  78. this.userdefine1 = userdefine1;
  79. }
  80. public String getUserdefine2() {
  81. return userdefine2;
  82. }
  83. public void setUserdefine2(String userdefine2) {
  84. this.userdefine2 = userdefine2;
  85. }
  86. public String getLocationNo() {
  87. return locationNo;
  88. }
  89. public void setLocationNo(String locationNo) {
  90. this.locationNo = locationNo;
  91. }
  92. public Long getLocationId() {
  93. return locationId;
  94. }
  95. public void setLocationId(Long locationId) {
  96. this.locationId = locationId;
  97. }
  98. public String getIsFull() {
  99. return isFull;
  100. }
  101. public void setIsFull(String isFull) {
  102. this.isFull = isFull;
  103. }
  104. @Override
  105. public String toString() {
  106. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  107. .append("id", getId())
  108. .append("boxNo", getBoxNo())
  109. .append("boxType", getBoxType())
  110. .append("boxState", getBoxState())
  111. .append("isEmpty", getIsEmpty())
  112. .append("createBy", getCreateBy())
  113. .append("createTime", getCreateTime())
  114. .append("updateBy", getUpdateBy())
  115. .append("updateTime", getUpdateTime())
  116. .append("userdefine1", getUserdefine1())
  117. .append("userdefine2", getUserdefine2())
  118. .append("locationNo", getLocationNo())
  119. .append("locationId", getLocationId())
  120. .append("isFull", getIsFull())
  121. .toString();
  122. }
  123. }