Node.java 2.32 KB
package com.ruoyi.service.domain;


import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
import com.ruoyi.common.annotation.Excel.ColumnType;


/**
 * 库房-节点 sys_job
 * 
 * @author ym
 */
public class Node extends BaseEntity
{
    private static final long serialVersionUID = 1L;

    /** 主键 */
    private Long id;

    /** 列主键 */
    private Long parentId;

    /** AB面 */
    @Excel(name = "AB面", cellType = ColumnType.STRING)
    private String surface;

    /** 节编号 */
    @Excel(name = "节编号", cellType = ColumnType.NUMERIC)
    private int nodeNo;

    /** 层编号 */
    @Excel(name = "层编号", cellType = ColumnType.NUMERIC)
    private int layerNo;

    /** 层位号 */
    @Excel(name = "层位号", cellType = ColumnType.STRING)
    private String layerCode;

    /** 库位号 */
    @Excel(name = "库位号", cellType = ColumnType.STRING)
    private String depotCode;

    /** 备注 */
    @Excel(name = "备注", cellType = ColumnType.STRING)
    private String mark;

    private String name;

    public Long getId() {
        return id;
    }

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

    public Long getParentId() {
        return parentId;
    }

    public void setParentId(Long parentId) {
        this.parentId = parentId;
    }

    public String getSurface() {
        return surface;
    }

    public void setSurface(String surface) {
        this.surface = surface;
    }

    public int getNodeNo() {
        return nodeNo;
    }

    public void setNodeNo(int nodeNo) {
        this.nodeNo = nodeNo;
    }

    public int getLayerNo() {
        return layerNo;
    }

    public void setLayerNo(int layerNo) {
        this.layerNo = layerNo;
    }

    public String getLayerCode() {
        return layerCode;
    }

    public void setLayerCode(String layerCode) {
        this.layerCode = layerCode;
    }

    public String getDepotCode() {
        return depotCode;
    }

    public void setDepotCode(String depotCode) {
        this.depotCode = depotCode;
    }

    public String getMark() {
        return mark;
    }

    public void setMark(String mark) {
        this.mark = mark;
    }

    public String getName() {
        return name=depotCode;
    }

    public void setName(String name) {
        this.name = depotCode;
    }
}