Station.java 696 Bytes
package com.huaheng.pc.general.station.domain;

/**
 * @author ricard
 * @time 2019/5/5
 * 站台实体
 */
public class Station {
    //id
    private Integer id;

    //仓库编码
    private String warehouseCode;

    //站台号
    private String code;

    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 getCode() {
        return code;
    }

    public void setCode(String code) {
        this.code = code;
    }
}