123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- package com.ruoyi.ams.box.domain;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.ruoyi.common.annotation.Excel;
- import com.ruoyi.common.core.domain.BaseEntity;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- /**
- * 容器管理对象 wms_box_info
- *
- * @author ruoyi
- * @date 2022-11-01
- */
- public class WmsBoxInfo extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 主键 */
- private Long id;
- /** 容器编号 */
- @Excel(name = "容器编号")
- private String boxNo;
- /** 容器类型 */
- @Excel(name = "容器类型",type = Excel.Type.EXPORT)
- private String boxType;
- /** 状态 */
- @Excel(name = "状态",type = Excel.Type.EXPORT)
- private Integer boxState;
- /** 是否有货 */
- @Excel(name = "是否有货",type = Excel.Type.EXPORT)
- private String isEmpty;
- /** */
- // @Excel(name = "")
- private String userdefine1;
- /** */
- // @Excel(name = "")
- private String userdefine2;
- /** 绑定库位 */
- @Excel(name = "绑定库位",type = Excel.Type.EXPORT)
- @TableField(exist = false)
- private String locationNo;
- private Long locationId;
- /** 是否满托 */
- @Excel(name = "是否满托",type = Excel.Type.EXPORT)
- private String isFull;
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public String getBoxNo() {
- return boxNo;
- }
- public void setBoxNo(String boxNo) {
- this.boxNo = boxNo;
- }
- public String getBoxType() {
- return boxType;
- }
- public void setBoxType(String boxType) {
- this.boxType = boxType;
- }
- public Integer getBoxState() {
- return boxState;
- }
- public void setBoxState(Integer boxState) {
- this.boxState = boxState;
- }
- public String getIsEmpty() {
- return isEmpty;
- }
- public void setIsEmpty(String isEmpty) {
- this.isEmpty = isEmpty;
- }
- public String getUserdefine1() {
- return userdefine1;
- }
- public void setUserdefine1(String userdefine1) {
- this.userdefine1 = userdefine1;
- }
- public String getUserdefine2() {
- return userdefine2;
- }
- public void setUserdefine2(String userdefine2) {
- this.userdefine2 = userdefine2;
- }
- public String getLocationNo() {
- return locationNo;
- }
- public void setLocationNo(String locationNo) {
- this.locationNo = locationNo;
- }
- public Long getLocationId() {
- return locationId;
- }
- public void setLocationId(Long locationId) {
- this.locationId = locationId;
- }
- public String getIsFull() {
- return isFull;
- }
- public void setIsFull(String isFull) {
- this.isFull = isFull;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("boxNo", getBoxNo())
- .append("boxType", getBoxType())
- .append("boxState", getBoxState())
- .append("isEmpty", getIsEmpty())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .append("userdefine1", getUserdefine1())
- .append("userdefine2", getUserdefine2())
- .append("locationNo", getLocationNo())
- .append("locationId", getLocationId())
- .append("isFull", getIsFull())
- .toString();
- }
- }
|