|
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;
}
|