source: src/main/java/com/example/autopartz/model/manytomany/PartIsInStockInWarehouseId.java@ 4d67d70

main
Last change on this file since 4d67d70 was 4d67d70, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 18 months ago

Final touches

  • Property mode set to 100644
File size: 402 bytes
Line 
1package com.example.autopartz.model.manytomany;
2
3import lombok.Data;
4
5import java.io.Serializable;
6
7@Data
8public 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.