package com.matrix.system.hive.bean; /** * 仓库 * * @author Administrator * */ public class Warehouse { /** * 序号 */ private Long id; /** * 仓库名称 */ private String name; /** * 门店id */ private Long shopId; /** * 公司ID */ private Long companyId; /** * 排序 */ private String sort; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Long getShopId() { return shopId; } public void setShopId(Long shopId) { this.shopId = shopId; } public String getSort() { return sort; } public void setSort(String sort) { this.sort = sort; } public Long getCompanyId() { return companyId; } public void setCompanyId(Long companyId) { this.companyId = companyId; } }