main
Last change
on this file since 5e7345e was 4d67d70, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 23 months ago |
Final touches
|
-
Property mode
set to
100644
|
File size:
402 bytes
|
Line | |
---|
1 | package com.example.autopartz.model.manytomany;
|
---|
2 |
|
---|
3 | import lombok.Data;
|
---|
4 |
|
---|
5 | import java.io.Serializable;
|
---|
6 |
|
---|
7 | @Data
|
---|
8 | public class PartIsInStockInWarehouseId implements Serializable {
|
---|
9 | Integer partid;
|
---|
10 | Integer warehouseid;
|
---|
11 |
|
---|
12 | public PartIsInStockInWarehouseId(Integer pId, Integer whId) {
|
---|
13 | this.partid = pId;
|
---|
14 | this.warehouseid = whId;
|
---|
15 | }
|
---|
16 |
|
---|
17 | public PartIsInStockInWarehouseId() {
|
---|
18 | }
|
---|
19 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.