LocationPosition.java 1.41 KB
package com.huaheng.pc.general.location.domain;

import java.util.Date;

public class LocationPosition {
    //id
    private Integer id;
    //仓库编码
    private String warehouseCode;
    //库位编码
    private String locationCode;
    //x轴
    private String intX;
    //y轴
    private String intY;
    //创建时间
    private Date created;
    //创建人
    private Date createdBy;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getWarehouseCode() {
        return warehouseCode;
    }

    public void setWarehouseCode(String warehouseCode) {
        this.warehouseCode = warehouseCode;
    }

    public String getLocationCode() {
        return locationCode;
    }

    public void setLocationCode(String locationCode) {
        this.locationCode = locationCode;
    }

    public String getIntX() {
        return intX;
    }

    public void setIntX(String intX) {
        this.intX = intX;
    }

    public String getIntY() {
        return intY;
    }

    public void setIntY(String intY) {
        this.intY = intY;
    }

    public Date getCreated() {
        return created;
    }

    public void setCreated(Date created) {
        this.created = created;
    }

    public Date getCreatedBy() {
        return createdBy;
    }

    public void setCreatedBy(Date createdBy) {
        this.createdBy = createdBy;
    }
}