Sign in

wms / hhwms · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • hhwms
  • ..
  • domain
  • ErpShipment.java
  • fix:erp接口;虚拟库存转移接口优化;
    2a464773
    周鸿 authored
    2024-06-20 11:22:26 +0800  
    Browse Dir »
ErpShipment.java 246 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.huaheng.api.erp.domain;

import java.util.List;

import lombok.Data;

/**
 * @author 游杰
 */
@Data
public class ErpShipment {

    private ErpShipmentHeader shipmentHeader;
    private List<ErpShipmentDetail> shipmentDetailList;
}