package com.sunda.spmswms.entity;

import lombok.Data;

/**
 * @description:
 * @author: Johnny Zhao
 * @time: 2021/5/17 11:38
 */
@Data
public class PositionMoveRequest {

    String boxNo;
    String uuid;
    String operateTime;
    String comments;
    int rowCode;

    public String getBoxNo() {
        return boxNo;
    }

    public void setBoxNo(String boxNo) {
        this.boxNo = boxNo;
    }

    public String getUuid() {
        return uuid;
    }

    public void setUuid(String uuid) {
        this.uuid = uuid;
    }

    public String getOperateTime() {
        return operateTime;
    }

    public void setOperateTime(String operateTime) {
        this.operateTime = operateTime;
    }

    public String getComments() {
        return comments;
    }

    public void setComments(String comments) {
        this.comments = comments;
    }

    public int getRowCode() {
        return rowCode;
    }

    public void setRowCode(int rowCode) {
        this.rowCode = rowCode;
    }
}
