package com.matrix.system.shopXcx.bean; 
 | 
  
 | 
import com.matrix.core.pojo.EntityDTO; 
 | 
import com.matrix.core.anotations.Extend; 
 | 
  
 | 
/** 
 | 
 * @description 发货明细 
 | 
 * @author yourName 
 | 
 * @date 2019-10-21 15:02 
 | 
 */ 
 | 
public class ShopDeliveryDetail  extends EntityDTO{ 
 | 
    @Extend 
 | 
    private static final long serialVersionUID = 1L;  
 | 
  
 | 
     
 | 
    /** 
 | 
     * 主键 
 | 
     */ 
 | 
    private Integer  id; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 发货ID 
 | 
     */ 
 | 
    private Integer  deliveryId; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 订单明细ID 
 | 
     */ 
 | 
    private Integer  orderDetailId; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 库存id 
 | 
     */ 
 | 
    private Integer  stockId; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 库存名称 
 | 
     */ 
 | 
    private String  stockName; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 库存批次 
 | 
     */ 
 | 
    private String  batch; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 出库数量 
 | 
     */ 
 | 
    private Integer  num; 
 | 
             
 | 
     
 | 
    /** 
 | 
     * 库存编码 
 | 
     */ 
 | 
    private String  stockCode; 
 | 
    private Long companyId; 
 | 
    public Long getCompanyId() { 
 | 
        return companyId; 
 | 
    } 
 | 
  
 | 
    public void setCompanyId(Long companyId) { 
 | 
        this.companyId = companyId; 
 | 
    } 
 | 
     
 | 
  
 | 
    public Integer getId() { 
 | 
        return id; 
 | 
    } 
 | 
        
 | 
       public void setId(Integer id) { 
 | 
        this.id=id; 
 | 
    } 
 | 
        
 | 
  
 | 
    public Integer getDeliveryId() { 
 | 
        return deliveryId; 
 | 
    } 
 | 
        
 | 
       public void setDeliveryId(Integer deliveryId) { 
 | 
        this.deliveryId=deliveryId; 
 | 
    } 
 | 
        
 | 
  
 | 
    public Integer getOrderDetailId() { 
 | 
        return orderDetailId; 
 | 
    } 
 | 
        
 | 
       public void setOrderDetailId(Integer orderDetailId) { 
 | 
        this.orderDetailId=orderDetailId; 
 | 
    } 
 | 
        
 | 
  
 | 
    public Integer getStockId() { 
 | 
        return stockId; 
 | 
    } 
 | 
        
 | 
       public void setStockId(Integer stockId) { 
 | 
        this.stockId=stockId; 
 | 
    } 
 | 
        
 | 
  
 | 
    public String getStockName() { 
 | 
        return stockName; 
 | 
    } 
 | 
        
 | 
       public void setStockName(String stockName) { 
 | 
        this.stockName=stockName; 
 | 
    } 
 | 
        
 | 
  
 | 
    public String getBatch() { 
 | 
        return batch; 
 | 
    } 
 | 
        
 | 
       public void setBatch(String batch) { 
 | 
        this.batch=batch; 
 | 
    } 
 | 
        
 | 
  
 | 
    public Integer getNum() { 
 | 
        return num; 
 | 
    } 
 | 
        
 | 
       public void setNum(Integer num) { 
 | 
        this.num=num; 
 | 
    } 
 | 
        
 | 
  
 | 
    public String getStockCode() { 
 | 
        return stockCode; 
 | 
    } 
 | 
        
 | 
       public void setStockCode(String stockCode) { 
 | 
        this.stockCode=stockCode; 
 | 
    } 
 | 
        
 | 
  
 | 
  
 | 
   
 | 
} 
 |