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
  • ..
  • receipt
  • InventoryItem.java
  • 多仓:pda接口
    d9caf39c
    周鸿 authored
    2022-11-25 08:42:34 +0800  
    Browse Code »
InventoryItem.java 243 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
package com.huaheng.mobile.receipt;

import lombok.Data;

import java.math.BigDecimal;

@Data
public class InventoryItem {
    private Integer id;
    private String materialCode;
    private String materialName;
    private BigDecimal qty;
}